summaryrefslogtreecommitdiff
path: root/db/migrate/20090301104237_add_draft_id_to_nodes.rb
blob: a0ea6724d244733dfa36ac0efb75909130a42d2c (plain)
1
2
3
4
5
6
7
8
9
class AddDraftIdToNodes < ActiveRecord::Migration
  def self.up
    add_column :nodes, :draft_id, :integer
  end

  def self.down
    remove_column :nodes, :draft_id
  end
end