engine = 'InnoDB'; $table->increments('id'); $table->string('code')->index()->nullable(); $table->mediumText('message_data')->nullable(); }); } public function down() { Schema::dropIfExists('rainlab_translate_messages'); } }