Newer
Older
dmpopidor / db / migrate / 20180803105147_remove_published_from_sections.rb
@Bodacious Bodacious on 3 Aug 2018 193 bytes Remove published column from sections table
class RemovePublishedFromSections < ActiveRecord::Migration
  def up
    remove_column :sections, :published, :boolean
  end
  def down
    add_column :sections, :published, :boolean
  end
end