mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
13 lines
354 B
Ruby
13 lines
354 B
Ruby
|
class AddInvisibleToForumThread < ActiveRecord::Migration
|
||
|
def up
|
||
|
add_column :forum_threads, :invisible, :boolean, default: false, null: false
|
||
|
change_column :categories, :excerpt, :text, null: true
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :forum_threads, :invisible
|
||
|
change_column :categories, :excerpt, :string, limit: 250, null: true
|
||
|
end
|
||
|
|
||
|
end
|