atcheck/database/migrations/2019_11_26_232020_create_classes_table.php
2019-11-27 00:46:00 +01:00

36 lines
750 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateClassesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('classes', function (Blueprint $table) {
$table->bigIncrements('id');
$table->integer('subject_id');
$table->date('date');
$table->timestamps();
$table->foreign('subject_id')->references('id')->on('subjects');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('classes');
}
}