/
home
/
sjslayjy
/
public_html
/
mosaram
/
database
/
migrations
/
Upload File
HOME
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateModulesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('modules', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('module'); $table->string('link')->nullable()->default(null); $table->integer('is_active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('modules'); } }