Skip to content

Commit

Permalink
Add lantern schema creation to update SQL file from version 0.2.2 to …
Browse files Browse the repository at this point in the history
…0.2.3
  • Loading branch information
var77 committed Apr 15, 2024
1 parent d30250f commit c217ab6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion sql/updates/0.2.2--0.2.3.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
-- Asynchronous task scheduling BEGIN
-- Create Lantern schema
CREATE SCHEMA lantern;
GRANT USAGE ON SCHEMA lantern TO PUBLIC;
GRANT EXECUTE ON ALL FUNCTIONS IN SCHEMA lantern TO PUBLIC;

-- Asynchronous task scheduling BEGIN
CREATE OR REPLACE FUNCTION _lantern_internal.maybe_setup_lantern_tasks() RETURNS VOID AS
$async_tasks_related$
BEGIN
Expand Down

0 comments on commit c217ab6

Please sign in to comment.