Файл: database/migrations/2018_02_26_170041_create_support_tickets_table.php
Строк: 31
<?php
use IlluminateSupportFacadesSchema;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateDatabaseMigrationsMigration;
class CreateSupportTicketsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('support_tickets', function (Blueprint $table) {
$table->increments('id');
$table->integer('user');
$table->integer('type')->default(0);
$table->string('name');
$table->string('status')->default('nonread');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('support_tickets');
}
}