Skip to content

Commit

Permalink
Remove unused column
Browse files Browse the repository at this point in the history
  • Loading branch information
fredZen authored and gregoirenovel committed Oct 3, 2018
1 parent 56a6e39 commit bdc0ee6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class RemoveOldDisplayedFieldsFromProcedurePresentations < ActiveRecord::Migration[5.2]
def change
remove_column :procedure_presentations, :old_displayed_fields
end
end
3 changes: 1 addition & 2 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 2018_10_02_162757) do
ActiveRecord::Schema.define(version: 2018_10_02_164310) do

# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
Expand Down Expand Up @@ -425,7 +425,6 @@

create_table "procedure_presentations", id: :serial, force: :cascade do |t|
t.integer "assign_to_id"
t.text "old_displayed_fields", default: ["{\"label\":\"Demandeur\",\"table\":\"user\",\"column\":\"email\"}"], null: false, array: true
t.jsonb "sort", default: {"order"=>"desc", "table"=>"notifications", "column"=>"notifications"}, null: false
t.jsonb "filters", default: {"tous"=>[], "suivis"=>[], "traites"=>[], "a-suivre"=>[], "archives"=>[]}, null: false
t.datetime "created_at"
Expand Down

0 comments on commit bdc0ee6

Please sign in to comment.