contactorama/db/migrate/20110504201805_create_mails.rb

14 lines
217 B
Ruby

class CreateMails < ActiveRecord::Migration
def self.up
create_table :mails do |t|
t.string :desc
t.string :address
t.timestamps
end
end
def self.down
drop_table :mails
end
end