increments('id'); $table->integer('item_id'); $table->integer('amount'); $table->integer('bookable_id'); $table->string('bookable_type'); $table->integer('user_id'); $table->text('comment'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bookings'); } }