mediumText('custom_design')->nullable(); }); DB::table('invoice_designs')->insert(['id' => CUSTOM_DESIGN1, 'name' => 'Custom']); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('accounts', function ($table) { $table->dropColumn('custom_design'); }); } }