Sha256: 528ff8f0bb7c2c47afe3bcac0adaadd04d4eb1d0c0e3bcffeebc2284b3daa577

Contents?: true

Size: 376 Bytes

Versions: 2

Compression:

Stored size: 376 Bytes

Contents

# This migration comes from plotline (originally 20160208102834)
class CreatePlotlineImages < ActiveRecord::Migration
  def change
    create_table :plotline_images do |t|
      t.string :image
      t.integer :width
      t.integer :height
      t.float :ratio
      t.integer :file_size
      t.string  :content_type
      t.json :exif

      t.timestamps
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
plotline-0.1.1 db/migrate/20160212172219_create_plotline_images.plotline.rb
plotline-0.1.0 db/migrate/20160212172219_create_plotline_images.plotline.rb