13 lines
229 B
Ruby
13 lines
229 B
Ruby
|
class CreateCustomers < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
create_table :customers do |t|
|
||
|
t.column :firstname, :string
|
||
|
t.column :name, :string
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
drop_table :customers
|
||
|
end
|
||
|
end
|