Файловый менеджер - Редактировать - /home/clickysoft/public_html/angelo.clickysoft.net/database/migrations/2014_10_12_000000_create_users_table.php
Назад
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function (Blueprint $table) { $table->id(); $table->integer('role_id')->default(2); $table->string('first_name'); $table->string('last_name'); $table->string('username')->unique(); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->string('phone'); $table->integer('accredited_investor')->comment('0 => Not Accredited, 1 => Admin Approved Accredited, 2 => Accredited'); $table->integer('recieve_digi_updates'); $table->integer('is_tax_form')->default(0); $table->string('w9_taxform')->nullable(); $table->tinyInteger('status')->default(1); $table->string('image')->nullable(); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } };
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка