PATH:
home
/
centosnipponia
/
public_html
/
appnip-old
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateVintomodelTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('vintomodel', function (Blueprint $table) { $table->id(); $table->string('vin'); $table->string('maker')->nullable(); $table->string('model'); $table->string('color')->nullable(); $table->string('speedversion')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('vintomodel'); } }
[+]
..
[-] 2014_10_12_000000_create_users_table.php
[edit]
[-] 2014_10_12_100000_create_password_resets_table.php
[edit]
[-] 2019_08_19_000000_create_failed_jobs_table.php
[edit]
[-] 2019_12_14_000001_create_personal_access_tokens_table.php
[edit]
[-] 2021_10_19_091233_create_products_table.php
[edit]
[-] 2021_10_19_092437_add_basics_to_products_table.php
[edit]
[-] 2022_03_23_143211_capetown_sale_units_table.php
[edit]
[-] 2021_11_15_083214_add_role_to_users.php
[edit]
[-] 2022_04_15_082440_europe_warehouse_table.php
[edit]
[-] 2022_04_24_192820_add_apitokenkey_to_users_table.php
[edit]
[-] 2022_04_24_193038_create_vintomodel_table.php
[edit]
[-] 2022_09_07_072006_customers_rd.php
[edit]
[-] 2022_09_07_072359_sales_year_rd.php
[edit]
[-] 2022_10_04_125747_create_pending_sales_rds_table.php
[edit]
[-] 2022_10_05_104434_create_customer_balance_rds_table.php
[edit]
[-] 2021_10_19_091328_create_track_prices_table.php
[edit]
[-] 2022_12_08_074704_add_country_to_products_table.php
[edit]
[-] 2022_12_08_094643_add_commentspackingnbr_to_track_prices_table.php
[edit]
[-] .htaccess.disabled
[edit]