PATH:
home
/
lab2454c
/
tripvare.com
/
backup
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class UpdateSettingsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('settings', function (Blueprint $table) { $table->text('app_welcome_heading')->nullable(); $table->text('app_welcome_sub_heading')->nullable(); $table->text('app_welcome_content')->nullable(); $table->text('app_welcome_button_text')->nullable(); $table->text('app_terms_condition_heading')->nullable(); $table->text('app_terms_condition_content')->nullable(); $table->text('app_terms_condition_privacy_button_text')->nullable(); $table->text('app_terms_condition_terms_button_text')->nullable(); $table->text('app_terms_condition_agree_button_text')->nullable(); $table->text('app_terms_condition_not_agree_button_text')->nullable(); $table->text('app_account_details_heading')->nullable(); $table->text('app_account_details_content')->nullable(); $table->text('app_account_details_after_form_content')->nullable(); $table->text('app_account_details_button_text')->nullable(); $table->text('app_verify_account_heading')->nullable(); $table->text('app_verify_account_content_before_email')->nullable(); $table->text('app_verify_account_content_after_email')->nullable(); $table->text('app_verify_account_button_text')->nullable(); $table->text('app_verify_account_success_heading')->nullable(); $table->text('app_verify_account_success_sub_heading')->nullable(); $table->text('app_verify_account_success_content')->nullable(); $table->text('app_verify_account_success_button_text')->nullable(); $table->text('app_dashboard_welcome_heading')->nullable(); $table->text('app_dashboard_welcome_sub_heading')->nullable(); $table->text('app_dashboard_welcome_content')->nullable(); $table->text('app_dashboard_welcome_button_text')->nullable(); $table->text('app_dashboard_legal_consent_heading')->nullable(); $table->text('app_dashboard_legal_consent_sub_heading')->nullable(); $table->text('app_dashboard_legal_consent_policy_heading')->nullable(); $table->text('app_dashboard_legal_consent_policy_content')->nullable(); $table->text('app_dashboard_legal_consent_policy_agree_text')->nullable(); $table->text('app_dashboard_legal_consent_healthpolicy_heading')->nullable(); $table->text('app_dashboard_legal_consent_healthpolicy_content')->nullable(); $table->text('app_dashboard_legal_consent_healthpolicy_agree_text')->nullable(); $table->text('app_dashboard_legal_consent_datatransfer_heading')->nullable(); $table->text('app_dashboard_legal_consent_datatransfer_content')->nullable(); $table->text('app_dashboard_legal_consent_datatransfer_agree_text')->nullable(); $table->text('app_dashboard_legal_consent_button_text')->nullable(); $table->text('app_dashboard_checklist_heading')->nullable(); $table->text('app_dashboard_checklist_sub_heading')->nullable(); $table->text('app_dashboard_checklist_content')->nullable(); $table->text('app_dashboard_checklist_step_1_heading')->nullable(); $table->text('app_dashboard_checklist_step_1_content')->nullable(); $table->text('app_dashboard_checklist_step_1_form_agreed_heading')->nullable(); $table->text('app_dashboard_checklist_step_1_form_agreed_sub_heading')->nullable(); $table->text('app_dashboard_checklist_step_1_form_agreed_note_heading')->nullable(); $table->text('app_dashboard_checklist_step_1_form_agreed_content')->nullable(); $table->text('app_dashboard_checklist_step_1_form_doc_upload_instruction')->nullable(); $table->text('app_dashboard_checklist_step_1_form_button_text')->nullable(); $table->text('app_dashboard_checklist_step_2_heading')->nullable(); $table->text('app_dashboard_checklist_step_2_content')->nullable(); $table->text('app_dashboard_checklist_step_2_form_agreed_heading')->nullable(); $table->text('app_dashboard_checklist_step_2_form_agreed_sub_heading')->nullable(); $table->text('app_dashboard_checklist_step_2_form_agreed_note_heading')->nullable(); $table->text('app_dashboard_checklist_step_2_form_agreed_content')->nullable(); $table->text('app_dashboard_checklist_step_2_form_doc_upload_instruction')->nullable(); $table->text('app_dashboard_checklist_step_2_form_button_text')->nullable(); $table->text('app_dashboard_checklist_step_3_heading')->nullable(); $table->text('app_dashboard_checklist_step_3_content')->nullable(); $table->text('app_dashboard_sidebar_menu_profile')->nullable(); $table->text('app_dashboard_sidebar_menu_document')->nullable(); $table->text('app_dashboard_sidebar_menu_contact')->nullable(); $table->text('app_dashboard_sidebar_menu_settings')->nullable(); $table->text('app_dashboard_settings_section_profile_heading')->nullable(); $table->text('app_dashboard_settings_section_support_heading')->nullable(); $table->text('app_dashboard_settings_section_support_button_1_text')->nullable(); $table->text('app_dashboard_settings_section_support_button_2_text')->nullable(); $table->text('app_dashboard_settings_section_support_button_3_text')->nullable(); $table->text('app_dashboard_settings_section_account_heading')->nullable(); $table->text('app_dashboard_settings_section_account_button_text')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('settings', function (Blueprint $table) { // }); } }
[-] 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]
[-] 2022_02_11_121633_update_settings_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]