Sha256: 02281bca11fa07aad326a654b02487230c2673583d99595b117d90de410b69fc
Contents?: true
Size: 326 Bytes
Versions: 5
Compression:
Stored size: 326 Bytes
Contents
class CreateImages < ActiveRecord::Migration def change create_table :images do |t| t.string :file t.references :imageable, polymorphic: true, index: true t.integer :width t.integer :height t.boolean :retina, default: false t.string :upload_name t.timestamps end end end
Version data entries
5 entries across 5 versions & 1 rubygems