mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 12:40:40 +08:00
8 lines
197 B
Ruby
8 lines
197 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddSearchableToUserFields < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :user_fields, :searchable, :boolean, default: false, null: false
|
|
end
|
|
end
|