Sha256: eb7b1aad27e7a1f1fb986646488d6cde68b2beacdea22c0a66b52f3379f13848
Contents?: true
Size: 416 Bytes
Versions: 16
Compression:
Stored size: 416 Bytes
Contents
class CreatePhotos < ActiveRecord::Migration def self.up create_table :photos do |t| t.string :title t.text :desc t.date :date_shot t.string :location t.integer :album_id t.string :file_file_name t.string :file_content_type t.integer :file_file_size t.datetime :file_updated_at t.timestamps end end def self.down drop_table :photos end end
Version data entries
16 entries across 16 versions & 2 rubygems