engine = 'InnoDB'; $table->increments('id'); $table->string('locale')->index(); $table->string('model_id')->index()->nullable(); $table->string('model_type')->index()->nullable(); $table->mediumText('attribute_data')->nullable(); }); } public function down() { Schema::dropIfExists('rainlab_translate_attributes'); } }