36 lines
763 B
PHP
36 lines
763 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('roles', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('name');
|
|
$table->timestamps();
|
|
});
|
|
|
|
// Insert predefined roles
|
|
// DB::table('roles')->insert([
|
|
// ['name' => 'Admin'],
|
|
// ['name' => 'Coordinator'],
|
|
// ['name' => 'Faculty']
|
|
// ]);
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('roles');
|
|
}
|
|
};
|