mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
c16a4379ca
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5236 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
42 lines
1.3 KiB
Ruby
42 lines
1.3 KiB
Ruby
require 'optparse'
|
|
|
|
module Rails
|
|
module Generator
|
|
class GeneratedAttribute
|
|
attr_accessor :name, :type, :column
|
|
|
|
def initialize(name, type)
|
|
@name, @type = name, type.to_sym
|
|
@column = ActiveRecord::ConnectionAdapters::Column.new(name, nil, @type)
|
|
end
|
|
|
|
def field_type
|
|
@field_type ||= case type
|
|
when :integer, :float, :decimal then :text_field
|
|
when :datetime, :timestamp, :time then :datetime_select
|
|
when :date then :date_select
|
|
when :string then :text_field
|
|
when :text then :text_area
|
|
when :boolean then :check_box
|
|
else
|
|
:text_field
|
|
end
|
|
end
|
|
|
|
def default
|
|
@default ||= case type
|
|
when :integer then 1
|
|
when :float then 1.5
|
|
when :decimal then "9.99"
|
|
when :datetime, :timestamp, :time then Time.now.to_s(:db)
|
|
when :date then Date.today.to_s(:db)
|
|
when :string then "MyString"
|
|
when :text then "MyText"
|
|
when :boolean then false
|
|
else
|
|
""
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|