From bacfc3648796dfad0375d2a7b461947c6f88189e Mon Sep 17 00:00:00 2001 From: Roland Schneider Date: Sat, 17 Jun 2017 22:01:22 +0200 Subject: [PATCH] add mover cutler door --- ...612_054003_add_ticket_type_door_alowed.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 console/migrations/m170612_054003_add_ticket_type_door_alowed.php diff --git a/console/migrations/m170612_054003_add_ticket_type_door_alowed.php b/console/migrations/m170612_054003_add_ticket_type_door_alowed.php new file mode 100644 index 0000000..bcfa275 --- /dev/null +++ b/console/migrations/m170612_054003_add_ticket_type_door_alowed.php @@ -0,0 +1,30 @@ +.addColumn("ticket_type", "door_allowed", "int default 0"); + } + + public function down() + { + echo "m170612_054003_add_ticket_type_door_alowed cannot be reverted.\n"; + + return false; + } + + /* + // Use safeUp/safeDown to run migration code within a transaction + public function safeUp() + { + } + + public function safeDown() + { + } + */ +}