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

View File

@ -0,0 +1,11 @@
START TRANSACTION;
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 `test3` tinyint(1) NOT NULL DEFAULT 0;
COMMIT;