Skip to content

Commit

Permalink
generate: update_pubspecs to update template project.
Browse files Browse the repository at this point in the history
  • Loading branch information
SandPod committed Nov 15, 2023
1 parent 5a86379 commit 31a43cc
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,22 @@ ALTER TABLE ONLY "serverpod_method"

CREATE UNIQUE INDEX serverpod_method_endpoint_method_idx ON "serverpod_method" USING btree ("endpoint", "method");

--
-- Class DatabaseMigrationVersion as table serverpod_migrations
--

CREATE TABLE "serverpod_migrations" (
"id" serial,
"module" text NOT NULL,
"version" text NOT NULL,
"timestamp" timestamp without time zone
);

ALTER TABLE ONLY "serverpod_migrations"
ADD CONSTRAINT serverpod_migrations_pkey PRIMARY KEY (id);

CREATE UNIQUE INDEX serverpod_migrations_ids ON "serverpod_migrations" USING btree ("module");

--
-- Class QueryLogEntry as table serverpod_query_log
--
Expand Down

0 comments on commit 31a43cc

Please sign in to comment.