new file.

This commit is contained in:
vanessa gil 2017-04-05 11:09:48 +02:00
parent abbc22335c
commit 0d21e46939
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
START TRANSACTION;
CREATE TABLE IF NOT EXISTS `ttable_test` (
CREATE TABLE IF NOT EXISTS `ttable_test3` (
`id` int(10) unsigned NOT NULL auto_increment,
`field1` varchar(60) NOT NULL default '',
`field2` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `tusuario` ADD COLUMN `test_nuevo` tinyint(1) NOT NULL DEFAULT 0;
ALTER TABLE `tusuario` ADD COLUMN `test_nuevo3` tinyint(1) NOT NULL DEFAULT 0;
COMMIT;