This commit is contained in:
vanessa gil 2017-03-22 11:03:38 +01:00
parent f1a33bcc3e
commit 2b7e5de6a1
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
START TRANSACTION;
CREATE TABLE IF NOT EXISTS `ttable_test2` (
`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_nuevo2` tinyint(1) NOT NULL DEFAULT 0;
COMMIT;