BookStackApp_BookStack/database/migrations/2015_11_21_145609_create_vi...

35 lines
714 B
PHP

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateViewsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('views', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id');
$table->integer('viewable_id');
$table->string('viewable_type');
$table->integer('views');
$table->nullableTimestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('views');
}
}