mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 11:14:06 +00:00
76 - Fixing the Testsuite
This commit is contained in:
@@ -15,10 +15,10 @@ class CreateOrdersTable extends Migration
|
||||
{
|
||||
Schema::create('orders', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('confirmation_number');
|
||||
$table->string('confirmation_number')->nullable();
|
||||
$table->integer('amount');
|
||||
$table->string('email');
|
||||
$table->string('card_last_four');
|
||||
$table->string('card_last_four')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class CreateTicketsTable extends Migration
|
||||
$table->unsignedInteger('concert_id');
|
||||
$table->unsignedInteger('order_id')->nullable();
|
||||
$table->datetime('reserved_at')->nullable();
|
||||
$table->string('code');
|
||||
$table->string('code')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user