Add cache table

This commit is contained in:
Samuel Georges 2015-09-19 05:32:05 +10:00
parent 528f6b1eca
commit b5611c3ed1

View File

@ -0,0 +1,21 @@
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class DbCache extends Migration
{
public function up()
{
Schema::create('cache', function (Blueprint $table) {
$table->string('key')->unique();
$table->text('value');
$table->integer('expiration');
});
}
public function down()
{
Schema::dropIfExists('cache');
}
}