You are on page 1of 1

<?

php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class Jurusan extends Migration


{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
Schema::create('jurusan', function (Blueprint $table) {
$table->id();
$table->string('nama_kelas');
$table->string('jurusan');
$table->timestamps();
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
Schema::drop('jurusan');
}
}

You might also like