text('invoice_footer')->nullable(); }); Schema::table('invoices', function ($table) { $table->text('invoice_footer')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('accounts', function ($table) { $table->dropColumn('invoice_footer'); }); Schema::table('invoices', function ($table) { $table->dropColumn('invoice_footer'); }); } }