Files
unity/database/migrations/2017_06_01_000006_create_users_table.php
T
glovetleong 8fa80e4a1a setup
2021-06-17 09:53:04 +08:00

41 lines
1003 B
PHP

<?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('first_name');
$table->string('last_name');
$table->string('username');
$table->string('email')->unique();
$table->string('password');
$table->json('img')->nullable();
$table->integer('status')->nullable()->default(1);
$table->timestamp('active_at')->nullable();
$table->timestamp('login_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}