Sha256: db8a3ff86bb26320b14d826401493483df13cd786ee1724f3b0a94c676250469

Contents?: true

Size: 1.13 KB

Versions: 3

Compression:

Stored size: 1.13 KB

Contents

require 'rails/generators/migration'
 
module TkhContent
  module Generators
    class CreateOrUpdateMigrationsGenerator < ::Rails::Generators::Base
      include Rails::Generators::Migration
      source_root File.expand_path('../templates', __FILE__)
      desc "create or update page migrations"
      def self.next_migration_number(path)
        unless @prev_migration_nr
          @prev_migration_nr = Time.now.utc.strftime("%Y%m%d%H%M%S").to_i
        else
          @prev_migration_nr += 1
        end
        @prev_migration_nr.to_s
      end
 
      def copy_migrations
        puts 'creating or updating page migrations'
        migration_template "create_pages.rb", "db/migrate/create_pages.rb"
        migration_template "add_author_to_pages.rb", "db/migrate/add_author_to_pages.rb"
        migration_template "add_parent_id_to_pages.rb", "db/migrate/add_parent_id_to_pages.rb"
        migration_template "create_tags.rb", "db/migrate/create_tags.rb"
        migration_template "create_taggings.rb", "db/migrate/create_taggings.rb"
        migration_template "create_contacts.rb", "db/migrate/create_contacts.rb"
      end
 
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tkh_content-0.1.9.2 lib/generators/tkh_content/create_or_update_migrations/create_or_update_migrations_generator.rb
tkh_content-0.1.9.1 lib/generators/tkh_content/create_or_update_migrations/create_or_update_migrations_generator.rb
tkh_content-0.1.9 lib/generators/tkh_content/create_or_update_migrations/create_or_update_migrations_generator.rb