Class: DbDiff::Delta::DropTrigger
- Inherits:
-
DbDiff::Delta
- Object
- DbDiff::Delta
- DbDiff::Delta::DropTrigger
- Defined in:
- lib/dbdiff/delta.rb
Instance Attribute Summary
Attributes inherited from DbDiff::Delta
Instance Method Summary collapse
Methods inherited from DbDiff::Delta
Constructor Details
This class inherits a constructor from DbDiff::Delta
Instance Method Details
#process(database) ⇒ Object
347 348 349 |
# File 'lib/dbdiff/delta.rb', line 347 def process(database) table(database).triggers.delete(element) end |
#sql ⇒ Object
343 344 345 |
# File 'lib/dbdiff/delta.rb', line 343 def sql return "DROP TRIGGER `#{element.name}`" end |