discourse/db/migrate/20161205065743_add_bio_to_g...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
189 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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