Файловый менеджер - Редактировать - /home/clickysoft/public_html/jmapi5.clickysoft.net/database/migrations/2022_11_28_000011_create_orders_table.php
Назад
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateOrdersTable extends Migration { public function up() { Schema::create('orders', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('order_type')->default('Order'); $table->string('order_number')->nullable(); $table->boolean('admin_approved')->default(0); $table->string('payment_status'); $table->string('payment_type'); $table->string('purchase_order_number')->nullable()->comment('Payment type -> Purchase Order'); //Billing Address $table->string('billing_company_name')->nullable(); $table->string('billing_primary_contact_name')->nullable(); $table->string('billing_primary_contact_email')->nullable(); $table->string('billing_secondary_contact_name')->nullable(); $table->string('billing_secondary_contact_email')->nullable(); $table->string('billing_address_line_1')->nullable(); $table->string('billing_address_line_2')->nullable(); $table->string('billing_city')->nullable(); $table->string('billing_state')->nullable(); $table->string('billing_zipcode')->nullable(); $table->string('billing_phone_number')->nullable(); //Shipping Address $table->string('shipping_company_name')->nullable(); $table->string('shipping_primary_contact_name')->nullable(); $table->string('shipping_primary_contact_email')->nullable(); $table->string('shipping_secondary_contact_name')->nullable(); $table->string('shipping_secondary_contact_email')->nullable(); $table->string('shipping_address_line_1')->nullable(); $table->string('shipping_address_line_2')->nullable(); $table->string('shipping_city')->nullable(); $table->string('shipping_state')->nullable(); $table->string('shipping_zipcode')->nullable(); $table->string('shipping_phone_number')->nullable(); $table->timestamps(); }); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка