PATH:
home
/
lab2454c
/
netxzero.com
/
carbon-credit
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('orders', function (Blueprint $table) { $table->id(); $table->foreignId('customer_id')->constrained('users'); $table->string('first_name', 100); $table->string('last_name', 100); $table->string('company_name', 100)->nullable(); $table->string('country', 100); $table->string('address', 500); $table->unsignedMediumInteger('zipcode'); $table->string('city', 100); $table->string('phone', 30); $table->string('email', 100); $table->text('project_id'); $table->bigInteger('carbon_quantity'); $table->text('receipt_url')->nullable(); $table->double('carbon_cost', 8,2); $table->double('transaction_cost', 8,2); $table->double('total_cost', 8,2); $table->string('payment_method', 100); $table->string('transaction_id'); $table->string('cloverly_transaction_id'); $table->string('card_holder_name', 100); $table->boolean('status'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('orders'); } };
[-] 2022_01_11_141106_create_contact_details_table.php
[edit]
[-] 2017_08_11_074006_create_menu_items_wp_table.php
[edit]
[-] 2014_10_12_100000_create_password_resets_table.php
[edit]
[-] 2022_04_23_052454_create_users_table.php
[edit]
[-] 2019_08_19_000000_create_failed_jobs_table.php
[edit]
[+]
..
[-] 2019_12_14_000001_create_personal_access_tokens_table.php
[edit]
[-] 2022_06_14_133921_create_cart_items_table.php
[edit]
[-] 2021_12_22_063139_create_admin_users_table.php
[edit]
[-] 2021_12_22_188740_create_pages_table.php
[edit]
[-] 2022_06_13_073515_create_projects_table.php
[edit]
[+]
laterUse
[-] 2021_12_22_138750_create_home_banners_table.php
[edit]
[-] 2022_06_13_073633_create_project_images_table.php
[edit]
[-] 2021_12_22_158760_create_social_links_table.php
[edit]
[-] 2017_08_11_073824_create_menus_wp_table.php
[edit]
[-] 2022_02_23_084250_create_galleries_table.php
[edit]
[-] 2022_06_21_115114_create_orders_table.php
[edit]
[-] 2021_12_22_125029_create_site_settings_table.php
[edit]