Skip to content

Commit 144d211

Browse files
jfrocheyvan-sraka
authored andcommitted
fix: update schema for dbmate schema_migrations table
dbmate 2.27 is now using a varchar for the version column in the schema_migrations table. See amacneil/dbmate#641
1 parent a0699a3 commit 144d211

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

migrations/schema-15.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ COMMENT ON TABLE auth.users IS 'Auth: Stores user login data within a secure sch
703703
--
704704

705705
CREATE TABLE public.schema_migrations (
706-
version character varying(128) NOT NULL
706+
version character varying NOT NULL
707707
);
708708

709709

migrations/schema-17.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ COMMENT ON TABLE auth.users IS 'Auth: Stores user login data within a secure sch
704704
--
705705

706706
CREATE TABLE public.schema_migrations (
707-
version character varying(128) NOT NULL
707+
version character varying NOT NULL
708708
);
709709

710710

migrations/schema-orioledb-17.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ COMMENT ON TABLE auth.users IS 'Auth: Stores user login data within a secure sch
718718
--
719719

720720
CREATE TABLE public.schema_migrations (
721-
version character varying(128) NOT NULL
721+
version character varying NOT NULL
722722
);
723723

724724

0 commit comments

Comments
 (0)