id(); $table->integer('module_id'); $table->string('key'); $table->string('name'); $table->integer('is_default')->default(0)->change(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('submodules'); } }