string('key', 40)->index()->unique(); $table->mediumText('value')->nullable(); $table->boolean('serialized')->default(0); }); $entety = new Setting(); $entety->key = 'url_callback_bot'; $entety->value = 'http://localhost/tbot'; $entety->serialized = 0; $entety->save(); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } }