Merge pull request #6029 from reasonerjt/create-schema-migration-tbl

Create shcema migration table in DB container
This commit is contained in:
Daniel Jiang 2018-10-15 12:53:32 +08:00 committed by GitHub
commit a494a829ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,2 +1,4 @@
CREATE DATABASE registry ENCODING 'UTF8';
\c registry;
CREATE TABLE schema_migrations(version bigint not null primary key, dirty boolean not null);