Its been a while

This commit is contained in:
Jason Jordan
2026-07-23 10:32:51 -04:00
parent 5a90ea6e14
commit 56009fa158
70 changed files with 686 additions and 147 deletions
@@ -0,0 +1,5 @@
class AddActiveStatusToMember < ActiveRecord::Migration[7.2]
def change
add_column :members, :active, :boolean
end
end
+2 -1
View File
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.2].define(version: 2026_05_13_162029) do
ActiveRecord::Schema[7.2].define(version: 2026_06_29_133740) do
create_table "brokers", force: :cascade do |t|
t.string "name"
t.bigint "carrier_id"
@@ -307,6 +307,7 @@ ActiveRecord::Schema[7.2].define(version: 2026_05_13_162029) do
t.bigint "id_card_plan_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.boolean "active"
t.index ["employer_id"], name: "index_members_on_employer_id"
t.index ["id_card_plan_id"], name: "index_members_on_id_card_plan_id"
end