Sha256: 90bc6b60079fd9a79ac1302049a361835435bc4e0f1cbc71bc9d7042651cf93f

Contents?: true

Size: 273 Bytes

Versions: 1

Compression:

Stored size: 273 Bytes

Contents

module DataMigrations
  class Instruction
    class Exec < Base
      attr_reader :statement

      def initialize(migration, statement)
        super(migration)
        @statement = statement
      end

      def statements
        [statement]
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
data_migrations-0.0.1 lib/data_migrations/instruction/exec.rb