Class: ROM::SQL::Migration::SchemaDiff::AttributeDiff Private

Inherits:
Object
  • Object
show all
Extended by:
Initializer
Defined in:
lib/rom/sql/migration/schema_diff.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Instance Method Details

#nameObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



67
68
69
# File 'lib/rom/sql/migration/schema_diff.rb', line 67

def name
  attr.name
end

#null?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


71
72
73
# File 'lib/rom/sql/migration/schema_diff.rb', line 71

def null?
  attr.optional?
end

#primary_key?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


75
76
77
# File 'lib/rom/sql/migration/schema_diff.rb', line 75

def primary_key?
  attr.primary_key?
end

#unwrap(attr) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



79
80
81
# File 'lib/rom/sql/migration/schema_diff.rb', line 79

def unwrap(attr)
  attr.optional? ? SQL::Attribute[attr.right, attr.options].meta(attr.meta) : attr
end