Sha256: c79b6709f0a52efb7087957e31e6fb3a013f74b58d4378ef7841236e385ee91d

Contents?: true

Size: 653 Bytes

Versions: 17

Compression:

Stored size: 653 Bytes

Contents

class CreateCoalescingPandaGroupCategories < CoalescingPanda::MiscHelper::MigrationClass
  def change
    create_table :coalescing_panda_group_categories do |t|
      t.belongs_to :context, polymorphic: true
      t.string :context_type
      t.integer :canvas_group_category_id
      t.string :name

      t.timestamps
    end
    add_index :coalescing_panda_group_categories, [:context_id, :context_type], name: :index_group_categories_context_and_context_type

    add_column :coalescing_panda_assignments, :coalescing_panda_group_category_id, :integer
    add_column :coalescing_panda_groups, :coalescing_panda_group_category_id, :integer
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
coalescing_panda-5.1.10 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.1.9 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.1.8 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.1.7 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.1.6 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.1.5 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.1.4 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.1.3.beta.2 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.1.3.beta.1 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.1.3 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.1.2 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.1.0 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.0.10 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.0.9 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.0.8 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.0.7 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb
coalescing_panda-5.0.6 db/migrate/20150714205405_create_coalescing_panda_group_categories.rb