Skip to content

Commit 26cc8a7

Browse files
jfrochesamrose
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 fbcd5a1 commit 26cc8a7

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
@@ -716,7 +716,7 @@ COMMENT ON TABLE auth.users IS 'Auth: Stores user login data within a secure sch
716716
--
717717

718718
CREATE TABLE public.schema_migrations (
719-
version character varying(128) NOT NULL
719+
version character varying NOT NULL
720720
);
721721

722722

0 commit comments

Comments
 (0)