Sha256: b95bb23381dd005d4bbc7ce9995964a33c5fa537ff6bf522b2a7c7de07fdd4cb
Contents?: true
Size: 1013 Bytes
Versions: 5
Compression:
Stored size: 1013 Bytes
Contents
require 'rails/generators' require 'rails/generators/migration' module Ecommerce module Generators class SetupGenerator < Rails::Generators::Base namespace "ecommerce" include Rails::Generators::Migration def create_migration_file migration_template 'migration.rb', 'db/migrate/create_ecommerce_tables.rb' end # This class method must be defined in your generator in order to find things like our migration templates 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 end end end
Version data entries
5 entries across 5 versions & 1 rubygems