mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 03:25:17 +08:00
8 lines
204 B
Ruby
Vendored
8 lines
204 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class AddFlairUrlToGroups < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :groups, :flair_url, :string
|
|
add_column :groups, :flair_bg_color, :string
|
|
end
|
|
end
|