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('projects', function (Blueprint $table) { $table->id(); $table->string('project_id'); $table->string('type'); $table->string('name'); $table->string('city'); $table->string('state'); $table->string('country'); $table->string('registry_serial_number_range')->nullable(); $table->text('registry_link')->nullable(); $table->string('registry_name')->nullable(); $table->text('project_url')->nullable(); $table->double('available_carbon_in_kg', 10,2)->nullable(); $table->double('cost_per_kg_carbon_in_usd_cents', 8, 2)->nullable(); $table->double('kwh_of_electricity_per_unit',8,2)->nullable(); $table->boolean('is_featured')->nullable(); $table->string('short_name')->nullable(); $table->string('short_description', 500)->nullable(); $table->text('long_description')->nullable(); $table->string('registry_project_id')->nullable(); $table->string('durability')->nullable(); $table->boolean('limitations')->nullable(); $table->string('offset_classification')->nullable(); $table->double('location_lat')->nullable(); $table->double('location_lon')->nullable(); $table->string('rating')->nullable(); $table->string('rating_title')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('projects'); } };
[-] 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]