contactorama/db/migrate/20110504202804_create_phones.rb

14 lines
215 B
Ruby

class CreatePhones < ActiveRecord::Migration
def self.up
create_table :phones do |t|
t.string :desc
t.string :nr
t.timestamps
end
end
def self.down
drop_table :phones
end
end