schema->create('config', function (Blueprint $table) { $table->string('key', 100)->primary(); $table->binary('value')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { $this->schema->drop('config'); } }