From be188dcf68b92a3a7fcb299a70fbd645eab6928b Mon Sep 17 00:00:00 2001 From: vanessa gil Date: Wed, 22 Mar 2017 10:47:51 +0100 Subject: [PATCH] new file --- pandora_console/extras/mr/1.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pandora_console/extras/mr/1.sql diff --git a/pandora_console/extras/mr/1.sql b/pandora_console/extras/mr/1.sql new file mode 100644 index 0000000000..4379665881 --- /dev/null +++ b/pandora_console/extras/mr/1.sql @@ -0,0 +1,11 @@ +START TRANSACTION; + +CREATE TABLE IF NOT EXISTS `ttable_test` ( + `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` tinyint(1) NOT NULL DEFAULT 0; + +COMMIT;