Initial commit from SVN.
This commit is contained in:
8
Foundation Test/TestApplication/setup.sql
Normal file
8
Foundation Test/TestApplication/setup.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
DROP TABLE IF EXISTS `test`.`test_object`;
|
||||
CREATE TABLE `test`.`test_object` (
|
||||
`ID` int(10) unsigned NOT NULL auto_increment,
|
||||
`NUMBER` int(10) unsigned NOT NULL default '0',
|
||||
`TEXT` varchar(30) NOT NULL default 'text',
|
||||
`FIXED_SIZE_DATA` tinyblob default NULL,
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Test Object Table';
|
||||
Reference in New Issue
Block a user