14 lines
217 B
Ruby
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
|