table = config('setting.database.table'); $this->key = config('setting.database.key'); $this->value = config('setting.database.value'); } /** * Run the migrations. * * @return void */ public function up() { Schema::create($this->table, function (Blueprint $table) { $table->increments('id'); $table->string($this->key)->index(); $table->text($this->value); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop($this->table); } }