Sha256: a3b3f9a3f565343c0f03137027f13b323bb67cbe3ae21a5b7e640b62db561e2a
Contents?: true
Size: 309 Bytes
Versions: 4
Compression:
Stored size: 309 Bytes
Contents
class CreateImages < ActiveRecord::Migration def self.up create_table :images do |t| t.string :image_file_name t.string :image_content_type t.string :image_file_size t.datetime :image_updated_at t.timestamps end end def self.down drop_table :images end end
Version data entries
4 entries across 3 versions & 1 rubygems