141 - Validating Poster Images

This commit is contained in:
Adam Wathan
2017-09-28 16:11:02 -04:00
parent b95e75dd6b
commit e18ba35efd
3 changed files with 52 additions and 2 deletions

View File

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