Merge branch 'release-2.140.115'
[feisty_meow.git] / production / example_apps / zippy_maps / config / Migrations / 20170519145000_add_image_to_categories.php
diff --git a/production/example_apps/zippy_maps/config/Migrations/20170519145000_add_image_to_categories.php b/production/example_apps/zippy_maps/config/Migrations/20170519145000_add_image_to_categories.php
new file mode 100644 (file)
index 0000000..dfb6867
--- /dev/null
@@ -0,0 +1,34 @@
+<?php
+
+use Phinx\Migration\AbstractMigration;
+
+class AddImageToCategories extends AbstractMigration
+{
+    /**
+     * Change Method.
+     *
+     * Write your reversible migrations using this method.
+     *
+     * More information on writing migrations is available here:
+     * http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
+     *
+     * The following commands can be used in this method and Phinx will
+     * automatically reverse them when rolling back:
+     *
+     *    createTable
+     *    renameTable
+     *    addColumn
+     *    renameColumn
+     *    addIndex
+     *    addForeignKey
+     *
+     * Remember to call "create()" or "update()" and NOT "save()" when working
+     * with the Table class.
+     */
+    public function change()
+    {
+       $this->table('categories')
+               ->addColumn('image', 'string', ['length' => 1024, 'null' => true])
+               ->update();
+    }
+}