forked from pterodactyl/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2016_01_23_203159_add_users.php
More file actions
38 lines (35 loc) · 971 Bytes
/
2016_01_23_203159_add_users.php
File metadata and controls
38 lines (35 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddUsers extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->char('uuid', 36)->unique();
$table->string('email')->unique();
$table->text('password');
$table->string('remember_token')->nullable();
$table->char('language', 5)->default('en');
$table->tinyInteger('root_admin')->unsigned()->default(0);
$table->tinyInteger('use_totp')->unsigned();
$table->char('totp_secret', 16)->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}