Added migrations for CreatingGroupCategories

• Added:
- migrations for CreatingGroupCategories
This commit is contained in:
mgabdev 2020-08-05 23:01:15 -05:00
parent 63176831da
commit da62ddbbc8

@ -0,0 +1,8 @@
class CreateGroupCategories < ActiveRecord::Migration[5.2]
def change
create_table :group_categories do |t|
t.timestamps
t.string :text, null: false, default: ''
end
end
end