increments('id'); $table->integer('dj')->unsigned(); $table->integer('week')->unsigned(); $table->integer('year')->unsigned(); $table->integer('day')->unsigned(); $table->integer('hour')->unsigned(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('timetables'); } }