[deploy] Remove group column from profile_fields (#10046)
This commit is contained in:
parent
1a147a3176
commit
ce9ed24090
2 changed files with 6 additions and 2 deletions
|
|
@ -0,0 +1,5 @@
|
|||
class RemoveGroupFromProfileFields < ActiveRecord::Migration[6.0]
|
||||
def change
|
||||
safety_assured { remove_column :profile_fields, :group }
|
||||
end
|
||||
end
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 2020_08_28_032013) do
|
||||
ActiveRecord::Schema.define(version: 2020_08_28_045600) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "citext"
|
||||
|
|
@ -945,7 +945,6 @@ ActiveRecord::Schema.define(version: 2020_08_28_032013) do
|
|||
t.datetime "created_at", precision: 6, null: false
|
||||
t.string "description"
|
||||
t.integer "display_area", default: 1, null: false
|
||||
t.string "group"
|
||||
t.integer "input_type", default: 0, null: false
|
||||
t.citext "label", null: false
|
||||
t.string "placeholder_text"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue