discourse/db/migrate/20120530212912_create_forum_thread_links.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
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
2019-05-13 09:31:32 +08:00

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