mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
30990006a9
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
31 lines
850 B
Ruby
31 lines
850 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddCustomFields < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :category_custom_fields do |t|
|
|
t.integer :category_id, null: false
|
|
t.string :name, limit: 256, null: false
|
|
t.text :value
|
|
t.timestamps null: false
|
|
end
|
|
|
|
create_table :group_custom_fields do |t|
|
|
t.integer :group_id, null: false
|
|
t.string :name, limit: 256, null: false
|
|
t.text :value
|
|
t.timestamps null: false
|
|
end
|
|
|
|
create_table :post_custom_fields do |t|
|
|
t.integer :post_id, null: false
|
|
t.string :name, limit: 256, null: false
|
|
t.text :value
|
|
t.timestamps null: false
|
|
end
|
|
|
|
add_index :category_custom_fields, [:category_id, :name]
|
|
add_index :group_custom_fields, [:group_id, :name]
|
|
add_index :post_custom_fields, [:post_id, :name]
|
|
end
|
|
end
|