diff --git a/migrations/20160404202433_cache_migration.php b/migrations/20160404202433_cache_migration.php new file mode 100644 index 00000000..59450fbf --- /dev/null +++ b/migrations/20160404202433_cache_migration.php @@ -0,0 +1,35 @@ +table('cache', ['id' => FALSE, 'primary_key' => ['key']]) + ->addColumn('key', 'text') + ->addColumn('value', 'text') + ->create(); + } +}