mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 13:05:17 +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
19 lines
572 B
Ruby
19 lines
572 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateForumThreadLinks < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :forum_thread_links do |t|
|
|
t.integer :forum_thread_id, null: false
|
|
t.integer :post_id, null: false
|
|
t.integer :user_id, null: false
|
|
t.string :url, limit: 500, null: false
|
|
t.string :domain, limit: 100, null: false
|
|
t.boolean :internal, null: false, default: false
|
|
t.integer :link_forum_thread_id, null: true
|
|
t.timestamps null: false
|
|
end
|
|
|
|
add_index :forum_thread_links, :forum_thread_id
|
|
end
|
|
end
|