module Immigrate::CommandRecorder
Public Instance Methods
create_foreign_connection(*args)
click to toggle source
# File lib/immigrate/command_recorder.rb, line 3 def create_foreign_connection *args record(:create_foreign_connection, args) end
create_foreign_table(*args)
click to toggle source
# File lib/immigrate/command_recorder.rb, line 11 def create_foreign_table *args record(:create_foreign_table, args) end
invert_create_foreign_connection(*args)
click to toggle source
# File lib/immigrate/command_recorder.rb, line 7 def invert_create_foreign_connection *args [:drop_foreign_connection, *args] end
invert_create_foreign_table(*args)
click to toggle source
# File lib/immigrate/command_recorder.rb, line 15 def invert_create_foreign_table *args [:drop_foreign_table, *args] end