Файл: database/migrations/2018_03_29_140535_create_forum_topics_table.php
Строк: 30
<?php
use IlluminateSupportFacadesSchema;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateDatabaseMigrationsMigration;
class CreateForumTopicsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('forum_topics', function (Blueprint $table) {
$table->increments('id');
$table->integer('category');
$table->integer('author');
$table->string('name');
$table->string('status')->default('open');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('forum_topics');
}
}