Gab-Social/db/migrate/20200727224633_create_group_categories.rb

9 lines
198 B
Ruby
Raw Normal View History

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