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