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