Sha256: 489e4284650ca796092514dfbfb1e5b64dff8ab92d0760a9077420a6f03c1c95
Contents?: true
Size: 464 Bytes
Versions: 10
Compression:
Stored size: 464 Bytes
Contents
class CreateSpudPhotoGalleries < ActiveRecord::Migration def change create_table :spud_photo_galleries do |t| t.string :title t.string :url_name t.timestamps end create_table :spud_photo_galleries_albums, :id => false do |t| t.integer :spud_photo_gallery_id t.integer :spud_photo_album_id end add_index :spud_photo_galleries, :url_name add_index :spud_photo_galleries_albums, :spud_photo_gallery_id end end
Version data entries
10 entries across 10 versions & 1 rubygems