class ActiveRecordUtils::Browser::Column

Attributes

default[R]
name[R]
null[R]
type[R]

Public Class Methods

new(name, type, default, null) click to toggle source
# File lib/activerecord/utils/browser.rb, line 247
def initialize(name, type, default, null)
  @name    = name
  @type    = type   # note: is sql_type
  @default = default
  @null    = null   # note: true|false depending if NOT NULL or not
end