Class: PGTrunk::Operations::Views::DropView

Inherits:
Base show all
Defined in:
lib/pg_trunk/operations/views/drop_view.rb

Instance Method Summary collapse

Methods included from PGTrunk::Operation::SQLHelpers

#quote

Methods included from PGTrunk::Operation::RubyHelpers

#dump, #to_a, #to_opts, #to_ruby

Methods included from PGTrunk::Operation::Inversion

#invert!, #irreversible!

Methods included from PGTrunk::Operation::Validations

#error_messages

Methods included from PGTrunk::Operation::Attributes

#attributes, #initialize

Instance Method Details

#invertObject



76
77
78
79
80
# File 'lib/pg_trunk/operations/views/drop_view.rb', line 76

def invert
  irreversible!("if_exists: true") if if_exists
  irreversible!("force: :cascade") if force == :cascade
  CreateView.new(**to_h.except(:force))
end

#to_sql(_version) ⇒ Object



68
69
70
71
72
73
74
# File 'lib/pg_trunk/operations/views/drop_view.rb', line 68

def to_sql(_version)
  sql = "DROP VIEW"
  sql << " IF EXISTS" if if_exists
  sql << " #{name.to_sql}"
  sql << " CASCADE" if force == :cascade
  sql << ";"
end