diff --git a/database/migrations/2020_03_31_135621_alter_add_expects_payment_to_reserved_tickets_table.php b/database/migrations/2020_03_31_135621_alter_add_expects_payment_to_reserved_tickets_table.php index 2f1c58ef..8fbdc05b 100644 --- a/database/migrations/2020_03_31_135621_alter_add_expects_payment_to_reserved_tickets_table.php +++ b/database/migrations/2020_03_31_135621_alter_add_expects_payment_to_reserved_tickets_table.php @@ -14,7 +14,7 @@ class AlterAddExpectsPaymentToReservedTicketsTable extends Migration public function up() { Schema::table('reserved_tickets', function (Blueprint $table) { - $table->dateTime('expexts_payment_at')->nullable(); + $table->dateTime('expects_payment_at')->nullable(); }); }