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

15 lines
239 B
Ruby
Raw Permalink Normal View History

class CreateGroups < ActiveRecord::Migration
def self.up
create_table :groups do |t|
t.string :name
2014-03-14 17:41:49 +00:00
t.integer :owner_id, references: nil
t.timestamps
end
end
def self.down
drop_table :groups
end
end