File: /var/www/ipsremont-demo/database/migrations/2021_02_09_151438_insert_act_tc_statuses.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
class InsertActTcStatuses extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::table('statuses')->insert(['name' => 'Открыт', 'slug' => 'new', 'position' => '10', 'type' => 'acttc', 'color' => 'text-danger']);
DB::table('statuses')->insert(['name' => 'Подтвержден', 'slug' => 'confirmed', 'position' => '20', 'type' => 'acttc', 'color' => 'text-warning']);
DB::table('statuses')->insert(['name' => 'Отклонен', 'slug' => 'rejected', 'position' => '30', 'type' => 'acttc', 'color' => 'text-dark-50']);
DB::table('statuses')->insert(['name' => 'Списан', 'slug' => 'decommissioned', 'position' => '40', 'type' => 'acttc', 'color' => 'text-green']);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}