PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
GeoLocale
/
Database
/
Migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddTimezoneToGeoLocaleCitiesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('geolocale_cities', function (Blueprint $table) { $table->string('iana_timezone', 191) ->after('code') ->nullable() ->comment('IANA Timezone Name'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('geolocale_cities', function (Blueprint $table) { $table->dropColumn('iana_timezone'); }); } }
[-] 2017_04_08_163453_create_geolocale_countries_locale_table.php
[edit]
[-] 2017_04_08_163453_create_geolocale_cities_locale_table.php
[edit]
[-] 2017_04_08_163453_create_geolocale_cities_table.php
[edit]
[+]
..
[-] 2017_04_08_163453_create_geolocale_countries_table.php
[edit]
[-] 2017_04_08_163453_create_geolocale_continents_locale_table.php
[edit]
[-] 2017_04_08_163453_create_geolocale_divisions_table.php
[edit]
[-] 2017_04_08_163454_add_foreign_keys_to_geolocale_divisions_table.php
[edit]
[-] 2017_04_08_163454_add_foreign_keys_to_geolocale_countries_locale_table.php
[edit]
[-] 2017_04_08_163454_add_foreign_keys_to_geolocale_continents_locale_table.php
[edit]
[-] 2021_07_22_221136_add_code_numeric_to_geolocale_countries.php
[edit]
[-] 2021_07_22_172545_add_timezone_to_geolocale_cities_table.php
[edit]
[-] 2017_04_08_163454_add_foreign_keys_to_geolocale_cities_table.php
[edit]
[-] 2017_04_08_163453_create_geolocale_divisions_locale_table.php
[edit]
[-] 2019_12_23_153024_create_geolocale_languages_table.php
[edit]
[-] 2017_04_08_163454_add_foreign_keys_to_geolocale_divisions_locale_table.php
[edit]
[-] 2017_04_08_163454_add_foreign_keys_to_geolocale_cities_locale_table.php
[edit]
[-] 2017_04_08_163454_add_foreign_keys_to_geolocale_countries_table.php
[edit]
[-] 2017_04_08_163453_create_geolocale_continents_table.php
[edit]