mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 10:41:45 +08:00
12 lines
267 B
Ruby
12 lines
267 B
Ruby
class BioMarkdownSupport < ActiveRecord::Migration[4.2]
|
|
def up
|
|
rename_column :users, :bio, :bio_raw
|
|
add_column :users, :bio_cooked, :text, null: true
|
|
end
|
|
|
|
def down
|
|
rename_column :users, :bio_raw, :bio
|
|
remove_column :users, :bio_cooked
|
|
end
|
|
end
|