Sha256: 94a54eb170d26f7ac6dcc981bc959ef4a4a121a374fffc6284e2fa5d86f629d7

Contents?: true

Size: 699 Bytes

Versions: 11

Compression:

Stored size: 699 Bytes

Contents

drop table if exists people CASCADE;
create table people (
  id serial primary key,
  first_name char(255),
  last_name char(255),
  ssn char(64),
  address_id integer
);
drop table if exists people2 CASCADE;
create table people2 (
  id serial primary key,
  first_name char(255),
  last_name char(255),
  ssn char(64)
);
drop table if exists places CASCADE;
create table places (
  id serial primary key,
  address text,
  city char(255),
  cstate char(255),
  country char(2)
);
drop table if exists items CASCADE;
create table items (
  id serial primary key,
  person_id integer
);
drop table if exists items_people CASCADE;
create table items_people (
  person_id integer,
  item_id integer
);

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
rails_sql_views4-0.0.3 test/connection/native_postgresql/schema.sql
rails_sql_views4-0.0.2 test/connection/native_postgresql/schema.sql
rails_sql_views4-0.0.1 test/connection/native_postgresql/schema.sql
robdimarco_rails_sql_views-0.9.0 test/connection/native_postgresql/schema.sql
molo-0.7.6 vendor/rails_sql_views/test/connection/native_postgresql/schema.sql
molo-0.7.5 vendor/rails_sql_views/test/connection/native_postgresql/schema.sql
molo-0.7.4 vendor/rails_sql_views/test/connection/native_postgresql/schema.sql
molo-0.7.3 vendor/rails_sql_views/test/connection/native_postgresql/schema.sql
molo-0.7.2 vendor/rails_sql_views/test/connection/native_postgresql/schema.sql
molo-0.7.1 vendor/rails_sql_views/test/connection/native_postgresql/schema.sql
molo-0.7.0 vendor/rails_sql_views/test/connection/native_postgresql/schema.sql