kuvia/database/migrations/2021_01_21_145341_traffix_t...

31 lines
561 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class TraffixTyp extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table("traffic", function (Blueprint $table) {
$table->enum("typ", ["cache", "s3", "generic"])->default("generic");
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}