discourse/db/migrate/20130616082327_create_optim...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
511 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CreateOptimizedImages < ActiveRecord::Migration[4.2]
2013-06-16 04:39:48 -04:00
def up
create_table :optimized_images do |t|
t.string :sha, null: false
t.string :ext, null: false
t.integer :width, null: false
t.integer :height, null: false
t.integer :upload_id, null: false
end
add_index :optimized_images, :upload_id
2013-06-16 19:00:25 -04:00
add_index :optimized_images, [:upload_id, :width, :height], unique: true
2013-06-16 04:39:48 -04:00
end
def down
drop_table :optimized_images
end
end