2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
class CreateOptimizedImages < ActiveRecord::Migration[4.2]
|
2013-06-16 16:39:48 +08: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-17 07:00:25 +08:00
|
|
|
add_index :optimized_images, [:upload_id, :width, :height], unique: true
|
2013-06-16 16:39:48 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
drop_table :optimized_images
|
|
|
|
end
|
|
|
|
end
|