Class: DbSchema::Operations::DropTable

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ DropTable

Returns a new instance of DropTable.



27
28
29
# File 'lib/db_schema/operations.rb', line 27

def initialize(name)
  @name = name
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



25
26
27
# File 'lib/db_schema/operations.rb', line 25

def name
  @name
end