From 0e21b7381cd0defac73ac2b36527eb286c35a4d0 Mon Sep 17 00:00:00 2001 From: Morgan Roderick Date: Mon, 3 Aug 2026 18:04:39 +0200 Subject: [PATCH] fix(schema.rb): remove unbacked columns added by self-check-in migrations Removes check_in_code and source columns/indexes that are not defined by any migration on master. The only migrations that add them live on the feature/self-check-in branch (commit 1ed1a544), which has not merged. This makes db/schema.rb consistent with db/migrate again, which is a prerequisite for the migration squash in feature/squash-pre-2026-migrations. --- db/schema.rb | 6 ------ 1 file changed, 6 deletions(-) diff --git a/db/schema.rb b/db/schema.rb index 9283847eb..37d4de123 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -201,7 +201,6 @@ create_table "events", id: :serial, force: :cascade do |t| t.boolean "announce_only" t.string "audience" - t.string "check_in_code" t.text "coach_description" t.string "coach_questionnaire" t.integer "coach_spaces" @@ -229,7 +228,6 @@ t.string "url" t.integer "venue_id" t.boolean "virtual", default: false, null: false - t.index ["check_in_code"], name: "index_events_on_check_in_code", unique: true t.index ["date_and_time"], name: "index_events_on_date_and_time" t.index ["slug"], name: "index_events_on_slug", unique: true t.index ["venue_id"], name: "index_events_on_venue_id" @@ -341,7 +339,6 @@ t.integer "member_id" t.text "note" t.string "role" - t.string "source" t.string "token" t.datetime "updated_at", precision: nil t.boolean "verified" @@ -595,7 +592,6 @@ t.datetime "reminded_at", precision: nil t.string "role" t.datetime "rsvp_time", precision: nil - t.string "source" t.string "token" t.text "tutorial" t.datetime "updated_at", precision: nil @@ -620,7 +616,6 @@ create_table "workshops", id: :serial, force: :cascade do |t| t.integer "chapter_id" - t.string "check_in_code" t.integer "coach_spaces", default: 0 t.datetime "created_at", precision: nil t.datetime "date_and_time", precision: nil @@ -637,7 +632,6 @@ t.datetime "updated_at", precision: nil t.boolean "virtual", default: false t.index ["chapter_id"], name: "index_workshops_on_chapter_id" - t.index ["check_in_code"], name: "index_workshops_on_check_in_code", unique: true t.index ["date_and_time"], name: "index_workshops_on_date_and_time" end