bigIncrements('id'); $table->string('title'); $table->text('description'); $table->string('price'); $table->string('vault_price'); $table->integer('seats'); $table->string('image'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('shows'); } }