Sha256: 6b5fc84f95be369694821280131c6c7bd93e2f7889bb43dd7ab7ed7a1374d3b1
Contents?: true
Size: 657 Bytes
Versions: 7
Compression:
Stored size: 657 Bytes
Contents
# AWEXOME LABS # DoesKeyValue # # IndexTableGenerator -- generator for the Index database table require 'rails/generators' require 'rails/generators/migration' class DoeskeyvalueGenerator < Rails::Generators::Base include Rails::Generators::Migration source_root File.expand_path('../templates', __FILE__) def self.next_migration_number(path) if ActiveRecord::Base.timestamped_migrations Time.now.utc.strftime("%Y%m%d%H%M%S") else "%.3d" % (current_migration_number(path) + 1) end end def create_migration_file migration_template 'create_key_value_index.rb', 'db/migrate/create_key_value_index.rb' end end
Version data entries
7 entries across 7 versions & 1 rubygems