Sha256: 2911146b5772cafe2d357e9232b83c80b3f167d8942f28cdcb6841cee604c404
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
drop table people; create table people ( id SERIAL PRIMARY KEY, first_name character varying(255) not null, /* null below allowed for bulk_import_with_empties.txt test */ last_name character varying(255) null, ssn character varying(64) not null ); drop table places; create table places ( id SERIAL PRIMARY KEY, address text, city character varying(255), state character varying(255), country character varying(2) ); drop table person_dimension; create table person_dimension ( id SERIAL PRIMARY KEY, first_name character varying(50), last_name character varying(50), address character varying(100), city character varying(50), state character varying(50), zip_code character varying(20), effective_date timestamp without time zone, end_date timestamp without time zone, latest_version boolean not null ); drop table truncate_test; create table truncate_test ( x character varying(4) ); insert into truncate_test (x) values ('a'); insert into truncate_test (x) values ('b'); insert into truncate_test (x) values ('c');
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activewarehouse-etl-0.9.5.rc1 | test/connection/postgresql/schema.sql |