rename declined message to note, increased width of textarea

This commit is contained in:
Godfrey M
2024-03-21 14:03:25 -07:00
parent b9986033cc
commit 21c3b1fbd2
7 changed files with 19 additions and 19 deletions
@@ -14,7 +14,7 @@ class AddDeclineMsgToCheckoutAcceptanceTable extends Migration
public function up()
{
Schema::table('checkout_acceptances', function (Blueprint $table) {
$table->text('declined_message')->after('signature_filename')->nullable();
$table->text('note')->after('signature_filename')->nullable();
});
}
@@ -26,7 +26,7 @@ class AddDeclineMsgToCheckoutAcceptanceTable extends Migration
public function down()
{
Schema::table('checkout_acceptances', function (Blueprint $table) {
$table->dropColumn('declined_message');
$table->dropColumn('note');
});
}
}