2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class CreateGroups < ActiveRecord::Migration[4.2]
|
2013-04-17 03:08:21 -04:00
|
|
|
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
|