Class: DbSchema::Changes::DropTable

Inherits:
Object
  • Object
show all
Defined in:
lib/db_schema/changes.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ DropTable

Returns a new instance of DropTable.



259
260
261
# File 'lib/db_schema/changes.rb', line 259

def initialize(name)
  @name = name
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



257
258
259
# File 'lib/db_schema/changes.rb', line 257

def name
  @name
end