engine = 'InnoDB'; $table->increments('id'); $table->string('theme')->nullable()->index(); $table->mediumtext('data')->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('rainlab_sitemap_definitions'); } }