increments('id'); $table->text('url'); $table->string('title'); $table->text('desc'); $table->integer('pictureable_id'); $table->string('pictureable_type'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('pictures'); } }