Upcoming database changes RELEASE 10 Febuary 2023

-ActiveRecord::Schema.define(version: 2023_01_12_045621) do
+ActiveRecord::Schema.define(version: 2023_02_07_112426) do

   # These are extensions that must be enabled in order to support this database
   enable_extension "citext"
@@ -320,6 +320,14 @@
     t.index ["account_number", "account_name"], name: "index_bank_transactions_on_account_number_and_account_name"
   end

+  create_table "bank_transactions_account_informations", force: :cascade do |t|
+    t.string "account_number"
+    t.string "account_name"
+    t.datetime "created_at", precision: 6, null: false
+    t.datetime "updated_at", precision: 6, null: false
+    t.index ["account_number"], name: "index_bank_transactions_account_informations_on_account_number"
+  end
+
   create_table "bank_transactions_import_logs", force: :cascade do |t|
     t.string "status"
     t.string "kind"
@@ -2827,6 +2835,7 @@
     t.string "pps_schedule_interval_stream_moderate", default: "Fortnightly"
     t.string "pps_schedule_interval_stream_high", default: "Fortnightly"
     t.boolean "can_email_action_plan", default: false, null: false
+    t.boolean "allied_health_activity_mandatory_delivery_mode", default: false, null: false
   end

   create_table "short_message_replies", id: :serial, force: :cascade do |t|
@@ -3222,6 +3231,15 @@
     t.index ["user_id"], name: "index_user_sets_on_user_id"
   end

+  create_table "user_settings", force: :cascade do |t|
+    t.bigint "user_id"
+    t.string "setting"
+    t.json "value"
+    t.datetime "created_at", null: false
+    t.datetime "updated_at", null: false
+    t.index ["user_id"], name: "index_user_settings_on_user_id"
+  end
+
   create_table "users", id: :serial, force: :cascade do |t|
     t.citext "email", default: "", null: false
     t.datetime "remember_created_at"
@@ -3520,6 +3538,7 @@
     t.boolean "variable_amount", default: false, null: false
     t.datetime "deleted_at"
     t.string "previous_system_identifier"
+    t.boolean "bottom_line", default: false, null: false
     t.index ["custom_expense_type_id"], name: "index_wage_subsidy_agreements_on_custom_expense_type_id"
     t.index ["deleted_at"], name: "index_wage_subsidy_agreements_on_deleted_at"
     t.index ["expense_payment_type_id"], name: "index_wage_subsidy_agreements_on_expense_payment_type_id"
(END)

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.