Файловый менеджер - Редактировать - /home/clickysoft/public_html/jmapi5.clickysoft.net/database/migrations/2022_11_28_000004_create_users_table.php
Назад
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUsersTable extends Migration { public function up() { Schema::create('users', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name'); $table->string('email')->unique(); $table->datetime('email_verified_at')->nullable(); $table->string('password')->nullable(); $table->string('phone_number')->nullable()->nullable(); $table->string('remember_token')->nullable(); $table->string('user_type')->nullable()->comment("1 = Admin, 2 = Employee, 3 = Customer"); $table->tinyInteger('status')->default(1); $table->timestamps(); }); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка