Sha256: 9bb99f314f445dad966f3ea7827de637da53426eec4dc012f66d2bca60c6325a

Contents?: true

Size: 775 Bytes

Versions: 3

Compression:

Stored size: 775 Bytes

Contents

drop table if exists people;
create table people (
  id int(11) DEFAULT NULL auto_increment PRIMARY KEY,
  first_name char(255),
  last_name char(255),
  ssn char(64),
  address_id integer
);
drop table if exists people2;
create table people2 (
  id int(11) DEFAULT NULL auto_increment PRIMARY KEY,
  first_name char(255),
  last_name char(255),
  ssn char(64)
);
drop table if exists places;
create table places (
  id int(11) DEFAULT NULL auto_increment PRIMARY KEY,
  address text,
  city char(255),
  cstate char(255),
  country char(2)
);
drop table if exists items;
create table items (
  id int(11) DEFAULT NULL auto_increment PRIMARY KEY,
  person_id int(11)
);
drop table if exists items_people;
create table items_people (
  person_id int(11),
  item_id int(11)
);

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rails_sql_views4-0.0.3 test/connection/native_mysql/schema.sql
rails_sql_views4-0.0.2 test/connection/native_mysql/schema.sql
rails_sql_views4-0.0.1 test/connection/native_mysql/schema.sql