Sha256: 13056507a45e8fdae32419b14c756ed4b9b8936313751d0c2002556d70131f22

Contents?: true

Size: 756 Bytes

Versions: 2

Compression:

Stored size: 756 Bytes

Contents

class ActsAsFavoritorMigration < ActiveRecord::Migration<%= migration_version %>
    def self.up
        create_table :favorites, force: true do |t|
            t.references :favoritable, polymorphic: true, null: false
            t.references :favoritor, polymorphic: true, null: false
            t.string :scope, default: ActsAsFavoritor.configuration.default_scope, null: false, index: true
            t.boolean :blocked, default: false, null: false, index: true
            t.timestamps
        end

        add_index :favorites, ['favoritor_id', 'favoritor_type'], name: 'fk_favorites'
        add_index :favorites, ['favoritable_id', 'favoritable_type'], name: 'fk_favoritables'
    end

    def self.down
        drop_table :favorites
    end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
acts_as_favoritor-2.0.1 lib/generators/templates/migration.rb.erb
acts_as_favoritor-2.0.0 lib/generators/templates/migration.rb.erb