<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTimetablesTable extends Migration
{
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('timetables', function (Blueprint $table) {
$table->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');
}
}