19 lines
345 B
Ruby
19 lines
345 B
Ruby
class CreateContacts < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :contacts do |t|
|
|
t.string :firstname
|
|
t.string :lastname
|
|
t.string :street
|
|
t.string :housenr
|
|
t.string :plz
|
|
t.string :place
|
|
t.string :country
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :contacts
|
|
end
|
|
end
|