Sha256: de167ec30294086e3eeee3078fdae4480110cff1ea844a2f7715b1b39ce80712
Contents?: true
Size: 305 Bytes
Versions: 14
Compression:
Stored size: 305 Bytes
Contents
class CreatePhotoDbs < ActiveRecord::Migration def self.up create_table :photo_dbs do |t| t.string :image_filename t.integer :image_width t.integer :image_height t.binary :image_file_data t.timestamps end end def self.down drop_table :photo_dbs end end
Version data entries
14 entries across 14 versions & 4 rubygems