Class: PGTrunk::Operations::Views::RenameView

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



41
42
43
44
# File 'lib/pg_trunk/operations/views/rename_view.rb', line 41

def invert
  irreversible!("if_exists: true") if if_exists
  self.class.new(**to_h, name: new_name, to: name)
end

#to_sql(_version) ⇒ Object



37
38
39
# File 'lib/pg_trunk/operations/views/rename_view.rb', line 37

def to_sql(_version)
  [*change_schema, *change_name].join("; ")
end