Sha256: 1fd424b8e108f81d9cd9f38465f5147454f4f16a556fb90a982f2c331105ab8a
Contents?: true
Size: 363 Bytes
Versions: 18
Compression:
Stored size: 363 Bytes
Contents
class CreatePhotos < ActiveRecord::Migration def change create_table :photos do |t| t.integer :imageable_id t.string :imageable_type t.integer :position t.string :src t.string :token t.timestamps end add_index :photos, :imageable_id add_index :photos, :imageable_type add_index :photos, :token end end
Version data entries
18 entries across 10 versions & 1 rubygems