Sha256: 32339ebbc09f0fe76012750032847f3fd3c9db14febbdd912bb8866c17860e02

Contents?: true

Size: 252 Bytes

Versions: 1

Compression:

Stored size: 252 Bytes

Contents

module PgMigrate
  class Migration
    attr_accessor :name, :ordinal, :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.1.11 lib/pg_migrate/migration.rb