Файловый менеджер - Редактировать - /home/clickysoft/public_html/database/migrations/2024_08_20_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('first_name', 30)->nullable(); $table->string('last_name', 30)->nullable(); $table->string('email')->nullable()->unique(); $table->string('password')->nullable(); $table->string('contact_number', 20)->nullable(); $table->unsignedTinyInteger('status')->default(1); $table->datetime('email_verified_at')->nullable(); $table->string('remember_token')->nullable(); $table->timestamps(); }); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка