D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
wabot.whatzi.online
/
database
/
migrations
/
Filename :
2014_10_12_000000_create_users_table.php
back
Copy
<?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('username'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->string('api_key'); $table->integer('chunk_blast'); $table->enum('level', ['admin', 'user'])->default('user'); $table->enum('status', ['active', 'inactive'])->default('active'); $table->integer('limit_device')->default(0); $table->enum('active_subscription', ['inactive', 'active','lifetime','trial'])->default('inactive'); $table->dateTime('subscription_expired')->nullable(); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }