From 0b564c2866174978b564a5b71f42320cf1a901ea Mon Sep 17 00:00:00 2001 From: vanessa gil Date: Tue, 21 Mar 2017 13:43:01 +0100 Subject: [PATCH] new file --- pandora_console/extras/mr/6.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pandora_console/extras/mr/6.sql diff --git a/pandora_console/extras/mr/6.sql b/pandora_console/extras/mr/6.sql new file mode 100644 index 0000000000..43c7925118 --- /dev/null +++ b/pandora_console/extras/mr/6.sql @@ -0,0 +1,11 @@ +START TRANSACTION; + +CREATE TABLE IF NOT EXISTS `ttable_test4` ( + `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 `test4` tinyint(1) NOT NULL DEFAULT 0; + +COMMIT;