discourse/db/migrate/20171026014317_add_user_opt...

8 lines
188 B
Ruby

# frozen_string_literal: true
class AddUserOptionHome < ActiveRecord::Migration[5.1]
def change
add_column :user_options, :homepage_id, :integer, null: true, default: nil
end
end