|
|
|
@ -16,6 +16,7 @@ class CreateAdminAreaLinks extends Migration
|
|
|
|
Schema::create('admin_area_links', function (Blueprint $table) {
|
|
|
|
Schema::create('admin_area_links', function (Blueprint $table) {
|
|
|
|
$table->increments('id');
|
|
|
|
$table->increments('id');
|
|
|
|
$table->integer("area_id")->nullable();
|
|
|
|
$table->integer("area_id")->nullable();
|
|
|
|
|
|
|
|
$table->integer("project_id")->nullable();
|
|
|
|
$table->string("admin_id")->nullable();
|
|
|
|
$table->string("admin_id")->nullable();
|
|
|
|
$table->timestamps();
|
|
|
|
$table->timestamps();
|
|
|
|
$table->softDeletes();
|
|
|
|
$table->softDeletes();
|
|
|
|
|