PATH:
home
/
lab2454c
/
tripvare.com
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateCountriesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('countries', function (Blueprint $table) { $table->uuid('id')->primary(); $table->integer('num_code'); $table->string('alpha_2_code')->nullable(); $table->string('alpha_3_code')->nullable(); $table->string('en_short_name')->nullable(); $table->string('nationality')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('countries'); } }
[-] 2017_08_11_074006_create_menu_items_wp_table.php
[edit]
[-] 2014_10_12_100000_create_password_resets_table.php
[edit]
[-] 2019_08_19_000000_create_failed_jobs_table.php
[edit]
[+]
..
[-] 2021_02_19_083338_update_users_table.php
[edit]
[-] 2021_07_28_035835_create_travel_informations_table.php
[edit]
[-] 2021_02_25_064056_create_admins_table.php
[edit]
[-] 2014_10_12_000000_create_users_table.php
[edit]
[-] 2021_02_19_080928_create_countries_table.php
[edit]
[-] 2021_02_19_141605_update_user_table_chng_column_name.php
[edit]
[-] 2021_07_28_114122_create_pages_table.php
[edit]
[-] 2021_02_22_081845_create_applications_table.php
[edit]
[-] 2021_02_19_084034_update_users_table_drop_column.php
[edit]
[-] 2017_08_11_073824_create_menus_wp_table.php
[edit]
[-] 2017_09_01_000000_create_authentication_log_table.php
[edit]
[-] 2021_07_29_140434_create_settings_table.php
[edit]
[-] 2021_07_29_121729_create_rewards_table.php
[edit]
[-] 2021_07_28_034341_create_membership_informations_table.php
[edit]