15 lines
222 B
Ruby
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
|