Browse Source

Remove noint_fix_status from the database (#2508)

pull/2498/head^2
kosiakkatrina 5 months ago committed by GitHub
parent
commit
bb270d34c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      db/migrate/20240715082338_remove_noint_fix_status.rb
  2. 3
      db/schema.rb

5
db/migrate/20240715082338_remove_noint_fix_status.rb

@ -0,0 +1,5 @@
class RemoveNointFixStatus < ActiveRecord::Migration[7.0]
def change
remove_column :bulk_uploads, :noint_fix_status, :string, default: "not_applied"
end
end

3
db/schema.rb

@ -10,7 +10,7 @@
# #
# It's strongly recommended that you check this file into your version control system. # It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.0].define(version: 2024_07_15_072421) do ActiveRecord::Schema[7.0].define(version: 2024_07_15_082338) do
# These are extensions that must be enabled in order to support this database # These are extensions that must be enabled in order to support this database
enable_extension "plpgsql" enable_extension "plpgsql"
@ -41,7 +41,6 @@ ActiveRecord::Schema[7.0].define(version: 2024_07_15_072421) do
t.integer "needstype" t.integer "needstype"
t.text "choice" t.text "choice"
t.integer "total_logs_count" t.integer "total_logs_count"
t.string "noint_fix_status", default: "not_applied"
t.string "rent_type_fix_status", default: "not_applied" t.string "rent_type_fix_status", default: "not_applied"
t.index ["identifier"], name: "index_bulk_uploads_on_identifier", unique: true t.index ["identifier"], name: "index_bulk_uploads_on_identifier", unique: true
t.index ["user_id"], name: "index_bulk_uploads_on_user_id" t.index ["user_id"], name: "index_bulk_uploads_on_user_id"

Loading…
Cancel
Save