discourse/db/migrate/20161205065743_add_bio_to_g...

7 lines
158 B
Ruby
Raw Normal View History

class AddBioToGroups < ActiveRecord::Migration[4.2]
2016-12-05 03:18:24 -05:00
def change
add_column :groups, :bio_raw, :text
add_column :groups, :bio_cooked, :text
end
end