mirror of
https://github.com/discourse/discourse.git
synced 2026-08-09 21:45:25 +08:00
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
21 lines
483 B
Ruby
Vendored
21 lines
483 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class GroupCustomField < ActiveRecord::Base
|
|
belongs_to :group
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: group_custom_fields
|
|
#
|
|
# id :integer not null, primary key
|
|
# group_id :integer not null
|
|
# name :string(256) not null
|
|
# value :text
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_group_custom_fields_on_group_id_and_name (group_id,name)
|
|
#
|