aboutsummaryrefslogtreecommitdiffhomepage
path: root/migrations/20150119171459_init_database.php
diff options
context:
space:
mode:
Diffstat (limited to 'migrations/20150119171459_init_database.php')
-rw-r--r--migrations/20150119171459_init_database.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/migrations/20150119171459_init_database.php b/migrations/20150119171459_init_database.php
deleted file mode 100644
index 35fc9e07..00000000
--- a/migrations/20150119171459_init_database.php
+++ /dev/null
@@ -1,22 +0,0 @@
1<?php
2
3use Phinx\Migration\AbstractMigration;
4
5class InitDatabase extends AbstractMigration
6{
7 /**
8 * Migrate Up.
9 */
10 public function up()
11 {
12 $this->execute("INSERT INTO config (name, value) VALUES ('foo', 'bar');");
13 }
14
15 /**
16 * Migrate Down.
17 */
18 public function down()
19 {
20 $this->execute("DELETE FROM config WHERE name = 'foo' AND value = 'bar';");
21 }
22} \ No newline at end of file