25 lines
730 B
PHP
25 lines
730 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class EnterpriseAlliances extends Migration
|
|
{
|
|
public function up()
|
|
{
|
|
Schema::table('enterprise_alliances', function (Blueprint $table) {
|
|
$table->tinyInteger('audit_type')->after('subscribe')->default(2)->comment('1.需要审核 2 不需要审核');
|
|
$table->timestamp('deleted_at')->nullable()->after('updated_at');
|
|
});
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
Schema::table('enterprise_alliances', function (Blueprint $table) {
|
|
$table->dropColumn('audit_type');
|
|
$table->dropColumn('deleted_at');
|
|
});
|
|
}
|
|
}
|