Class: PGTrunk::Operations::Sequences::RenameSequence
- Inherits:
-
Base
show all
- Defined in:
- lib/pg_trunk/operations/sequences/rename_sequence.rb
Instance Method Summary
collapse
Methods inherited from Base
#owned_by
#quote
#dump, #to_a, #to_opts, #to_ruby
#invert!, #irreversible!
#error_messages
#attributes, #initialize
Instance Method Details
#invert ⇒ Object
40
41
42
43
|
# File 'lib/pg_trunk/operations/sequences/rename_sequence.rb', line 40
def invert
irreversible!("if_exists: true") if if_exists
self.class.new(**to_h, name: new_name, to: name)
end
|
#to_sql(_version) ⇒ Object
36
37
38
|
# File 'lib/pg_trunk/operations/sequences/rename_sequence.rb', line 36
def to_sql(_version)
[*change_schema, *change_name].join(" ")
end
|