markbates / mack-more

All the extra stuff you could want for the Mack Framework.

This URL has Read+Write access

mack-more / mack-data_mapper / spec / fixtures / test_test_mysql_schema_structure.sql.fixture
100644 14 lines (11 sloc) 0.344 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CREATE TABLE `cottages` (
  `id` int(11) NOT NULL auto_increment,
  `created_at` datetime default NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
CREATE TABLE `houses` (
  `id` int(11) NOT NULL auto_increment,
  `color` varchar(50) default NULL,
  `address` text,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;