117 - Storing the Intended Ticket Quantity

This commit is contained in:
Adam Wathan
2017-07-04 10:22:11 -04:00
parent 39adf532fb
commit ffee09b62a
3 changed files with 69 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ class CreateConcertsTable extends Migration
$table->string('state');
$table->string('zip');
$table->integer('ticket_price');
$table->integer('ticket_quantity');
$table->datetime('published_at')->nullable();
$table->timestamps();
});