Class: PGTrunk::Operations::Views::CreateView

Inherits:
Base show all
Defined in:
lib/pg_trunk/operations/views/create_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



92
93
94
95
# File 'lib/pg_trunk/operations/views/create_view.rb', line 92

def invert
  irreversible!("replace_existing: true") if replace_existing
  DropView.new(**to_h)
end

#to_sql(_version) ⇒ Object



88
89
90
# File 'lib/pg_trunk/operations/views/create_view.rb', line 88

def to_sql(_version)
  [create_view, *create_comment, register_view].join(" ")
end