Sha256: 226c64c3481d49c64ef1388d12e76eec72ae557ef5bd8f830a5474d3ee304d44
Contents?: true
Size: 388 Bytes
Versions: 25
Compression:
Stored size: 388 Bytes
Contents
\connect postgres drop database if exists pg_graph; create database pg_graph; \connect pg_graph create table picture_kinds ( id integer generated by default as identity primary key, kind varchar not null unique ); create table pictures ( id integer generated by default as identity primary key, title text not null, kind varchar not null references picture_kinds(kind) );
Version data entries
25 entries across 25 versions & 1 rubygems