Sha256: a3c675978c2febafb8da7a7ce37f1997d3a10bd4c8a2abf853fb1a79d8a888be

Contents?: true

Size: 342 Bytes

Versions: 8

Compression:

Stored size: 342 Bytes

Contents

class CreateFamilyGalleryGroups < ActiveRecord::Migration
  def up
    create_table :family_gallery_groups do |t|
      t.timestamps
    end

    FamilyGallery::Group.create_translation_table! name: :string, description: :text
  end

  def down
    drop_table :family_gallery_groups
    FamilyGallery::Group.drop_translation_table!
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
family_gallery-0.0.8 db/plugin_migrate/20150224155422_create_family_gallery_groups.rb
family_gallery-0.0.7 db/plugin_migrate/20150224155422_create_family_gallery_groups.rb
family_gallery-0.0.6 db/plugin_migrate/20150224155422_create_family_gallery_groups.rb
family_gallery-0.0.5 db/plugin_migrate/20150224155422_create_family_gallery_groups.rb
family_gallery-0.0.4 db/plugin_migrate/20150224155422_create_family_gallery_groups.rb
family_gallery-0.0.3 db/plugin_migrate/20150224155422_create_family_gallery_groups.rb
family_gallery-0.0.2 db/plugin_migrate/20150224155422_create_family_gallery_groups.rb
family_gallery-0.0.1 db/plugin_migrate/20150224155422_create_family_gallery_groups.rb