harbor/make/photon/db/initial-registry.sql

4 lines
148 B
MySQL
Raw Normal View History

CREATE DATABASE registry ENCODING 'UTF8';
\c registry;
CREATE TABLE schema_migrations(version bigint not null primary key, dirty boolean not null);