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

16 lines
249 B
Ruby

# -*- encoding : utf-8 -*-
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