Sha256: d8d544ed143fa2063222cbac1d860d2bfb890d04d4a82143506c564ea8bb5cbe

Contents?: true

Size: 482 Bytes

Versions: 2

Compression:

Stored size: 482 Bytes

Contents

module MinceMigrator
  module Migrations
    require 'time'

    module ASecondMigration2
      def self.run
        # Actual migration goes here
      end

      def self.revert
        # In case you need to revert this one migration
      end

      # So you can change the order to run more easily
      def self.time_created
        Time.parse "2013-03-28 05:03:26 UTC"
      end

      module Temporary
        # Migration dependent classes go here
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mince_migrator-1.0.1 spec/support/db/a_second_migration_2.rb
mince_migrator-1.0.0 spec/support/db/a_second_migration_2.rb