36 lines
786 B
PHP
36 lines
786 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')->unique();
|
|
$table->integer('subject_id');
|
|
$table->date('date');
|
|
$table->string('classes_code')->nullable();
|
|
$table->string('mode')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('classes');
|
|
}
|
|
}
|