Sha256: a7649241bd8ab3cb0f55c296bf4ee33453ed0947da35772ee242bdcd4e050dc9

Contents?: true

Size: 818 Bytes

Versions: 19

Compression:

Stored size: 818 Bytes

Contents

class CreatePolygalleriesIfNecessary < ActiveRecord::Migration
  def up
    unless ActiveRecord::Base.connection.table_exists? 'polygallery_galleries'
      create_table :polygallery_galleries do |t|
        t.string :title, :default => 'gallery'
        t.integer :default_photo_id
        t.integer :galleryable_id
        t.string :galleryable_type
        t.string :class_name

        t.timestamps
      end
    end
    unless ActiveRecord::Base.connection.table_exists? 'polygallery_photos'
      create_table :polygallery_photos do |t|
        t.integer :gallery_id
        t.attachment :photo
        t.string :title
        t.text :caption
        t.string :class_name

        t.timestamps
      end
    end
  end
  def down
    drop_table :polygallery_galleries
    drop_table :polygallery_photos
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
polygallery-0.4.8 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.4.7 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.4.6 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.4.5 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.4.4 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.4.2 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.4.1 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.4.0 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.3.6 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.3.5 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.3.4 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.3.3 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.3.2 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.3.1 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.3.0 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.2.5 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.2.4 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.2.3 db/migrate/20150701180557_create_polygalleries_if_necessary.rb
polygallery-0.2.1 db/migrate/20150701180557_create_polygalleries_if_necessary.rb