aboutsummaryrefslogblamecommitdiffstats
path: root/actionwebservice/test/fixtures/db_definitions/mysql.sql
blob: 8e01eef4534b4964f0e80863e31bce54609b1487 (plain) (tree)
1
2
3
4
5
6
7
8



                                       
                                       


                                       
CREATE TABLE `users` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(30) default NULL,
  `active` tinyint(4) default NULL,
  `balance` decimal(5, 2) default NULL,
  `created_on` date default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;