Browse Source

createa a migration to remove the column for the deleted question

pull/1388/head
Arthur Campbell 3 years ago
parent
commit
ebe6e3a7fc
  1. 5
      db/migrate/20230307111943_remove_othernational_from_sales_logs.rb
  2. 1
      db/schema.rb

5
db/migrate/20230307111943_remove_othernational_from_sales_logs.rb

@ -0,0 +1,5 @@
class RemoveOthernationalFromSalesLogs < ActiveRecord::Migration[7.0]
def change
remove_column :sales_logs, :othernational, :string
end
end

1
db/schema.rb

@ -403,7 +403,6 @@ ActiveRecord::Schema[7.0].define(version: 2023_03_08_101826) do
t.integer "age1_known"
t.string "sex1"
t.integer "national"
t.string "othernational"
t.integer "ethnic"
t.integer "ethnic_group"
t.integer "buy1livein"

Loading…
Cancel
Save