Sha256: 681671374b033dd0171164c0406c3ec43d78001c19e36e22beccd29c739e5e60
Contents?: true
Size: 461 Bytes
Versions: 6
Compression:
Stored size: 461 Bytes
Contents
require 'rails/generators/active_record' class GeeePay::MigrationGenerator < ::Rails::Generators::Base include Rails::Generators::Migration source_root File.expand_path('../templates', __FILE__) desc 'Installs GeeePay migration file.' def install migration_template 'migration.rb', 'db/migrate/create_geee_pay_notices.rb' end def self.next_migration_number(dirname) ActiveRecord::Generators::Base.next_migration_number(dirname) end end
Version data entries
6 entries across 6 versions & 1 rubygems