/
home
/
sjslayjy
/
public_html
/
devlok
/
database
/
migrations
/
Upload File
HOME
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateRoleModuleAssociationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('role_module_associations', function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('role_id'); $table->integer('module_id'); $table->integer('sub_module_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('role_module_associations'); } }