Sha256: e914d83131fa036e6d10360a71443dd6afc4f79ac717d6e6c5873a4ee1ae43cb
Contents?: true
Size: 369 Bytes
Versions: 131
Compression:
Stored size: 369 Bytes
Contents
class CreateProfiles < ActiveRecord::Migration def self.up create_table :profiles, :force => true do |t| t.integer :user_id t.string :photo_file_name t.string :photo_content_type t.integer :photo_file_size t.timestamps end add_index :profiles, ['user_id'] end def self.down drop_table :profiles end end
Version data entries
131 entries across 105 versions & 10 rubygems