rosa-build/db/migrate/20111012223944_create_group...

15 lines
222 B
Ruby

class CreateGroups < ActiveRecord::Migration
def self.up
create_table :groups do |t|
t.string :name
t.integer :owner_id
t.timestamps
end
end
def self.down
drop_table :groups
end
end