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

Version Path
spud_photos-0.9.0.2 db/migrate/20120228232344_create_spud_photo_galleries.rb
spud_photos-0.9.0.1 db/migrate/20120228232344_create_spud_photo_galleries.rb
spud_photos-0.9.0 db/migrate/20120228232344_create_spud_photo_galleries.rb
spud_photos-0.1.5 db/migrate/20120228232344_create_spud_photo_galleries.rb
spud_photos-0.1.4 db/migrate/20120228232344_create_spud_photo_galleries.rb
spud_photos-0.1.3 db/migrate/20120228232344_create_spud_photo_galleries.rb
spud_photos-0.1.2 db/migrate/20120228232344_create_spud_photo_galleries.rb
spud_photos-0.1 db/migrate/20120228232344_create_spud_photo_galleries.rb
spud_photos-0.0.3 db/migrate/20120228232344_create_spud_photo_galleries.rb
spud_photos-0.0.2 db/migrate/20120228232344_create_spud_photo_galleries.rb