mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:17:08 +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
18 lines
410 B
Ruby
18 lines
410 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreatePostUploads < ActiveRecord::Migration[4.2]
|
|
def up
|
|
create_table :post_uploads do |t|
|
|
t.integer :post_id, null: false
|
|
t.integer :upload_id, null: false
|
|
end
|
|
|
|
# no support for this till rails 4
|
|
execute 'create unique index idx_unique_post_uploads on post_uploads(post_id, upload_id)'
|
|
end
|
|
|
|
def down
|
|
drop_table :post_uploads
|
|
end
|
|
end
|