2013-04-17 03:08:21 -04:00
|
|
|
class CreateGroups < ActiveRecord::Migration
|
|
|
|
def change
|
2013-05-07 13:30:12 -04:00
|
|
|
create_table :groups, force: true do |t|
|
2013-04-17 03:08:21 -04:00
|
|
|
t.string :name, null: false
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2013-04-17 03:08:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|