engine = 'InnoDB'; $table->increments('id'); $table->string('code')->index(); $table->string('name')->index()->nullable(); $table->boolean('is_default')->default(0); $table->boolean('is_enabled')->default(0); }); } public function down() { Schema::dropIfExists('rainlab_translate_locales'); } }