mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 20:13:38 +08:00
6 lines
157 B
Ruby
6 lines
157 B
Ruby
|
class AddUserOptionHome < ActiveRecord::Migration[5.1]
|
||
|
def change
|
||
|
add_column :user_options, :homepage_id, :integer, null: true, default: nil
|
||
|
end
|
||
|
end
|