diff --git a/db/migrate/20231120101451_remove_unreplied_from_talks.rb b/db/migrate/20231120101451_remove_unreplied_from_talks.rb new file mode 100644 index 00000000000..8532459ef6d --- /dev/null +++ b/db/migrate/20231120101451_remove_unreplied_from_talks.rb @@ -0,0 +1,5 @@ +class RemoveUnrepliedFromTalks < ActiveRecord::Migration[6.1] + def change + remove_column :talks, :unreplied, :boolean + end +end diff --git a/db/schema.rb b/db/schema.rb index abde98c3b4d..10ecb4215a2 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2023_10_01_031818) do +ActiveRecord::Schema.define(version: 2023_11_20_101451) do # These are extensions that must be enabled in order to support this database enable_extension "pgcrypto" @@ -667,7 +667,6 @@ t.bigint "user_id", null: false t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false - t.boolean "unreplied", default: false, null: false t.boolean "action_completed", default: true, null: false t.index ["user_id"], name: "index_talks_on_user_id" end