cirandas.net

ref: master

db/migrate/20100619120420_create_qualifiers.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
class CreateQualifiers < ActiveRecord::Migration
  def self.up
    create_table :qualifiers do |t|
      t.string :name
      t.references :environment

      t.timestamps
    end
  end

  def self.down
    drop_table :qualifiers
  end
end