Skip to content

Commit 69cfe72

Browse files
authored
Merge pull request #708 from integer32llc/drop-old-schema-migrations-table
Drop the old schema_migrations table
2 parents 38855f1 + 76950a1 commit 69cfe72

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CREATE TABLE IF NOT EXISTS schema_migrations (
2+
id SERIAL PRIMARY KEY,
3+
version INT8 NOT NULL UNIQUE
4+
);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP TABLE IF EXISTS schema_migrations;

0 commit comments

Comments
 (0)