mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 07:07:10 +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
15 lines
423 B
Ruby
15 lines
423 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateTopicEmbeds < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :topic_embeds, force: true do |t|
|
|
t.integer :topic_id, null: false
|
|
t.integer :post_id, null: false
|
|
t.string :embed_url, null: false
|
|
t.string :content_sha1, null: false, limit: 40
|
|
t.timestamps null: false
|
|
end
|
|
|
|
add_index :topic_embeds, :embed_url, unique: true
|
|
end
|
|
end
|