From 309ed42a8fcd6a8cedb8bbbda1321130658a013f Mon Sep 17 00:00:00 2001 From: vanessa gil Date: Wed, 15 Mar 2017 17:20:16 +0100 Subject: [PATCH] New mr. --- 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..0e3aa54b6d --- /dev/null +++ b/pandora_console/extras/mr/1.sql @@ -0,0 +1,11 @@ +START TRANSACTION; + +CREATE TABLE IF NOT EXISTS `ttable_test_nueva2` ( + `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;