bookstack/database/migrations/2015_11_21_145609_create_vi...

35 lines
709 B
PHP
Raw Normal View History

<?php
use Illuminate\Database\Migrations\Migration;
2021-06-26 23:23:15 +08:00
use Illuminate\Database\Schema\Blueprint;
return new class 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');
2016-02-17 05:25:11 +08:00
$table->nullableTimestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('views');
}
};