id(); $table->string('name')->unique(); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->string('littlelink_name')->unique()->nullable(); $table->string('littlelink_description')->nullable(); $table->enum('role', ['user', 'vip', 'admin'])->default('user'); $table->enum('block', ['yes', 'no'])->default('no'); $table->rememberToken(); $table->timestamps(); $table->string('theme')->nullable(); $table->unsignedInteger('auth_as')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }