Sha256: 8123a4dea41a49fd8e58f98e71a628941c120e024bd3669b31eb02c8581be3a9

Contents?: true

Size: 333 Bytes

Versions: 4

Compression:

Stored size: 333 Bytes

Contents

# -*- encoding : utf-8 -*-

require "cardio/migration"

module Cardio
  class Migration
    # Inherit from this migration class to make database table changes
    # in your deck
    class DeckStructure < Migration
      @type = :deck

      def contentedly &block
        Cardio.schema_mode :deck, &block
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
card-1.101.7 lib/cardio/migration/deck_structure.rb
card-1.102.0 lib/cardio/migration/deck_structure.rb
card-1.101.6 lib/cardio/migration/deck_structure.rb
card-1.101.5 lib/cardio/migration/deck_structure.rb