-- Add up migration script here create table if not exists graph_registry_type_ids ( id integer primary key autoincrement, schema_version varchar(512) not null, schema_name varchar(32) not null, graphql_name varchar(32) not null, table_name varchar(32) not null ); create table if not exists graph_registry_columns ( id integer primary key autoincrement, type_id integer not null, column_position integer not null, column_name varchar(32) not null, column_type varchar(32) not null, nullable boolean not null, graphql_type varchar not null, constraint fk_table_name foreign key(type_id) references graph_registry_type_ids(id) ); CREATE TABLE IF NOT EXISTS graph_registry_graph_root ( id integer primary key autoincrement, version varchar not null, schema_name varchar not null, query varchar not null, schema varchar not null, UNIQUE(version, schema_name) ); CREATE TABLE IF NOT EXISTS graph_registry_root_columns ( id integer primary key autoincrement, root_id integer not null, column_name varchar(32) not null, graphql_type varchar(32) not null, CONSTRAINT fk_root_id FOREIGN KEY(root_id) REFERENCES graph_registry_graph_root(id) );