summaryrefslogtreecommitdiff
path: root/db/migrate/20090201211159_create_flags.rb
blob: 3b9da430b66d0b39fd31137f9c67af97e08377d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateFlags < ActiveRecord::Migration
  def self.up
    create_table :flags do |t|
      t.string :name

      t.timestamps
    end
  end

  def self.down
    drop_table :flags
  end
end