Sha256: 0ba9c03341846f9ff4b5efa93893180481fb55b4062476677ddf545980e7fe15

Contents?: true

Size: 247 Bytes

Versions: 1

Compression:

Stored size: 247 Bytes

Contents

module PgMigrate
  class Migration
    attr_accessor :name, :ordinal, :md5, :created, :production, :filepath

    def initialize(name, ordinal, filepath)
      @name = name
      @ordinal = ordinal
      @filepath = filepath
    end
    
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pg_migrate-0.0.1 lib/pg_migrate/migration.rb