Sha256: 46f2f0292dd5a7393405ba4eae7fb536550fca76d3bc93eac206b8440390027d
Contents?: true
Size: 309 Bytes
Versions: 12
Compression:
Stored size: 309 Bytes
Contents
class CreatePhotoFiles < ActiveRecord::Migration def self.up create_table :photo_files do |t| t.string :image_filename t.integer :image_width t.integer :image_height t.string :image_format t.timestamps end end def self.down drop_table :photo_files end end
Version data entries
12 entries across 12 versions & 4 rubygems