35 lines
782 B
PHP
35 lines
782 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateQualificationsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('tbl_qualifications', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('name');
|
|
$table->string('description',1024)->nullable();
|
|
$table->enum('status',['Active','Inactive'])->default('Active');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('tbl_qualifications');
|
|
}
|
|
}
|