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