Sha256: cd69f17d3de0366f3c1cc8db66e5f430b6ec20f3ec22c852222e8cc36e173762
Contents?: true
Size: 779 Bytes
Versions: 7
Compression:
Stored size: 779 Bytes
Contents
# lib/generators/esa/esa_generator.rb require 'rails/generators' require 'rails/generators/migration' class EventSourcedAccountingGenerator < Rails::Generators::Base include Rails::Generators::Migration def self.source_root @source_root ||= File.join(File.dirname(__FILE__), 'templates') end # Implement the required interface for Rails::Generators::Migration. # taken from http://github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb def self.next_migration_number(dirname) if ActiveRecord::Base.timestamped_migrations Time.now.utc.strftime("%Y%m%d%H%M%S") else "%.3d" % (current_migration_number(dirname) + 1) end end def create_migration_file migration_template 'migration.rb', 'db/migrate/create_esa_tables.rb' end end
Version data entries
7 entries across 7 versions & 1 rubygems