Файловый менеджер - Редактировать - /home/clickysoft/public_html/database/migrations/2024_08_20_000005_create_organizations_table.php
Назад
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateOrganizationsTable extends Migration { public function up() { Schema::create('organizations', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name', 50); $table->string('email')->unique(); $table->string('contact_number', 20)->nullable(); $table->string('address_line_1')->nullable(); $table->string('address_line_2')->nullable(); $table->unsignedTinyInteger('status')->default(1); $table->date('date_expiration'); $table->timestamps(); }); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка