mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:13:38 +08:00
17 lines
492 B
Ruby
Vendored
17 lines
492 B
Ruby
Vendored
# frozen_string_literal: true
|
|
class AddGroupsToLeaderboards < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :gamification_leaderboards,
|
|
:visible_to_groups_ids,
|
|
:integer,
|
|
array: true,
|
|
null: false,
|
|
default: []
|
|
add_column :gamification_leaderboards,
|
|
:included_groups_ids,
|
|
:integer,
|
|
array: true,
|
|
null: false,
|
|
default: []
|
|
end
|
|
end
|