summaryrefslogtreecommitdiff
blob: 21d664180812ea9750b48eab54790e91ca9408c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class CreateBugs < ActiveRecord::Migration
  def self.up
    create_table :bugs do |t|
      t.integer :bug_id
      t.text :title
      t.integer :revision_id
      t.timestamps
    end

    add_index :bugs, :revision_id
    add_index :bugs, :bug_id
  end

  def self.down
    remove_index :bugs, :column => :revision_id
    remove_index :bugs, :column => :bug_id
    drop_table :bugs
  end
end