diff --git a/modules/system/database/migrations/2015_10_01_000016_Db_Cache.php b/modules/system/database/migrations/2015_10_01_000016_Db_Cache.php new file mode 100644 index 000000000..2737d6c5b --- /dev/null +++ b/modules/system/database/migrations/2015_10_01_000016_Db_Cache.php @@ -0,0 +1,21 @@ +string('key')->unique(); + $table->text('value'); + $table->integer('expiration'); + }); + } + + public function down() + { + Schema::dropIfExists('cache'); + } +}