Raffales-LMS/database/migrations/2014_10_12_000000_create_users_table.php

42 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2024-04-16 09:58:24 +00:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->enum('status',['active','in_active'])->nullable();
$table->enum('is_deleted',['yes','no'])->nullable()->default('no');
$table->timestamp('deleted_at')->nullable();
$table->bigInteger('last_updated_by')->nullable();
$table->bigInteger('last_deleted_by')->nullable();
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}