demarches-normaliennes/db/migrate/20170711125429_remove_published_from_procedures.rb

6 lines
132 B
Ruby
Raw Normal View History

class RemovePublishedFromProcedures < ActiveRecord::Migration[5.0]
def change
remove_column :procedures, :published
end
end