Sha256: ae8c3d0b990bbe77974ee174eaa9ffb3d3ef705e4942815a8965ddae7600364c
Contents?: true
Size: 731 Bytes
Versions: 22
Compression:
Stored size: 731 Bytes
Contents
require 'generators/data_mapper' module DataMapper module Generators class MigrationGenerator < Base argument :attributes, :type => :array, :default => [], :banner => "field:type field:type" class_option :id, :type => :numeric, :desc => "The id to be used in this migration" def create_migration_file set_local_assigns! migration_template "migration.rb", "db/migrate/#{file_name}.rb" end protected attr_reader :migration_action def set_local_assigns! if file_name =~ /^(add|remove|drop)_.*_(?:to|from)_(.*)/ @migration_action = $1 == 'add' ? 'add' : 'drop' @table_name = $2.pluralize end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems