Skip to content

Commit d867ddc

Browse files
committed
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 be0962c commit d867ddc

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

703703
CREATE TABLE public.schema_migrations (
704-
version character varying(128) NOT NULL
704+
version character varying NOT NULL
705705
);
706706

707707

migrations/schema-17.sql

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

704704
CREATE TABLE public.schema_migrations (
705-
version character varying(128) NOT NULL
705+
version character varying NOT NULL
706706
);
707707

708708

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)