Class: DbDiff::Delta::DropTable

Inherits:
DbDiff::Delta show all
Defined in:
lib/dbdiff/delta.rb

Instance Attribute Summary

Attributes inherited from DbDiff::Delta

#element

Instance Method Summary collapse

Methods inherited from DbDiff::Delta

#initialize, #table, #to_a

Constructor Details

This class inherits a constructor from DbDiff::Delta

Instance Method Details

#process(database) ⇒ Object



260
261
262
# File 'lib/dbdiff/delta.rb', line 260

def process(database)
  database.tables.delete(element)
end

#sqlObject



256
257
258
# File 'lib/dbdiff/delta.rb', line 256

def sql
  "DROP TABLE #{element.name}"
end