Merge branch 'release-2.140.115'
[feisty_meow.git] / production / example_apps / zippy_maps / config / Migrations / 20170421142733_create_locations_table.php
diff --git a/production/example_apps/zippy_maps/config/Migrations/20170421142733_create_locations_table.php b/production/example_apps/zippy_maps/config/Migrations/20170421142733_create_locations_table.php
new file mode 100644 (file)
index 0000000..29b4833
--- /dev/null
@@ -0,0 +1,41 @@
+<?php
+
+use Phinx\Migration\AbstractMigration;
+
+class CreateLocationsTable 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('locations', ['id' => false, 'primary_key' => ['id']])
+            ->addColumn('id', 'integer', ['identity' => true, 'signed' => false])
+            ->addColumn('name', 'string', ['length' => 255, 'null' => false])
+            ->addColumn('location', 'string', ['length' => 1024, 'null' => false])
+            ->addColumn('latlong', 'string', ['length' => 255, 'null' => true])
+            ->addColumn('created', 'datetime')
+            ->addColumn('modified', 'datetime')
+            ->addIndex('name', ['unique' => true])
+            ->addIndex('location')
+            ->create();
+    }
+}