summaryrefslogtreecommitdiff
path: root/db/migrate/20170130221926_create_uploads.rb
blob: 4d9fa0bb69299ac2898865b64116b746594ca97a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# rubocop:disable Migration/Datetime
class CreateUploads < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    create_table :uploads do |t|
      t.integer :size, limit: 8, null: false
      t.string :path, null: false
      t.string :checksum, limit: 64
      t.references :model, polymorphic: true
      t.string :uploader, null: false
      t.datetime :created_at, null: false
    end

    add_index :uploads, :path
    add_index :uploads, :checksum
    add_index :uploads, [:model_id, :model_type]
  end
end