increments('id'); $table->string('table', 200)->nullable(); $table->string('column', 200)->nullable(); $table->string('key', 200)->nullable(); $table->string('name', 200)->nullable(); $table->unsignedInteger('sort')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('options'); } }