Searched defs:push (Results 1 - 1 of 1) sorted by relevance

/ontohub/script/
H A Drename_refactor.rb207 push(:up, "execute <<-SQL\n#{drop_old_function} SQL\n")
208 push(:up, "execute <<-SQL\n#{create_new_function} SQL\n")
210 push(:down, "execute <<-SQL\n#{drop_new_function} SQL\n")
211 push(:down, "execute <<-SQL\n#{create_old_function} SQL\n")
220 push(:up, "rename_table '#{old_name}', '#{new_name}'")
221 push(:down, "rename_table '#{new_name}', '#{old_name}'")
233 push(:up, "rename_column '#{table_name}', "\
235 push(:down, "rename_column '#{table_name}', "\
268 push(:up, "remove_index '#{table_name}', name: '#{old_index_name}'")
269 push(
358 def push(*args) method in class:MigrationProvider.commands
[all...]

Completed in 15 milliseconds