mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
abe8fa73a9
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5670 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
8 lines
270 B
SQL
8 lines
270 B
SQL
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;
|