Sha256: e31c948ba5caf29abe9e1232a65312d6d4f6cb29200217cdf69b2508baa30781

Contents?: true

Size: 1.21 KB

Versions: 3

Compression:

Stored size: 1.21 KB

Contents

# This will generate a migration for your application.
# 
# Example without columns:
#   rake generate:migration name=create_users
# 
# db/migrations/<number>_create_users.rb:
#   class CreateUsers < ActiveRecord::Migration
#     self.up
#     end
# 
#     self.down
#     end
#   end
# 
# Example with columns:
#   rake generate:migration name=create_users cols=username:string,email_address:string,created_at:datetime,updated_at:datetime
# 
# db/migrations/<number>_create_users.rb:
#   class CreateUsers < ActiveRecord::Migration
#     self.up
#       create_table :users do |t|
#         t.column :username, :string
#         t.column :email_address, :string
#         t.column :created_at, :datetime
#         t.column :updated_at, :datetime
#     end
# 
#     self.down
#       drop_table :users
#     end
#   end
class MigrationGenerator < Genosaurus

  require_param :name
  
  def setup # :nodoc:
    @name_singular = param(:name).singular.underscore
    @name_plural = @name_singular.plural.underscore
    @name_singular_camel = @name_singular.camelcase
    @name_plural_camel = @name_plural.camelcase
    @table_name = @name_plural.gsub("create_", "")
    @migration_name = "#{next_migration_number}_#{@name_plural}"
  end
  
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mack-active_record-0.8.2 lib/mack-active_record/migration_generator/migration_generator.rb
mack-active_record-0.8.3 lib/mack-active_record/migration_generator/migration_generator.rb
mack-active_record-0.8.3.1 lib/mack-active_record/migration_generator/migration_generator.rb