-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1174 from bersace/docs
Fix upgrade
- Loading branch information
Showing
3 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
CREATE SCHEMA IF NOT EXISTS application; | ||
CREATE TABLE IF NOT EXISTS application.schema_migration_log ( | ||
version TEXT UNIQUE NOT NULL PRIMARY KEY, | ||
cdate TIMESTAMP DEFAULT NOW(), | ||
comment TEXT | ||
comment TEXT, | ||
cdate TIMESTAMP DEFAULT NOW() | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
DROP TABLE IF EXISTS "application"."alembic_version"; | ||
CREATE TABLE IF NOT EXISTS "application"."schema_migration_log" ( | ||
version TEXT UNIQUE NOT NULL PRIMARY KEY, | ||
comment TEXT, | ||
cdate TIMESTAMP DEFAULT NOW() | ||
); |