Add Custom Fields on Topics

This commit is contained in:
Benjamin Kampmann
2014-04-25 18:24:22 +02:00
parent 48f016c7f5
commit e502122c51
4 changed files with 78 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
class AddTopicCustomFields < ActiveRecord::Migration
def change
create_table :topic_custom_fields do |t|
t.integer :topic_id, null: false
t.string :name, limit: 256, null: false
t.text :value
t.timestamps
end
add_index :topic_custom_fields, [:topic_id, :name]
# migrate meta_data into custom fields
execute <<-SQL
INSERT INTO topic_custom_fields(topic_id, name, value)
SELECT id, (each(meta_data)).key, (each(meta_data)).value
FROM topics WHERE meta_data <> ''
SQL
remove_column :topics, :meta_data
end
end