Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160220123949_rename_tasks_to_todos.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cc110a0a1a27fd96cbd8100fd2697e3a15112e7 (plain)
1
2
3
4
5
class RenameTasksToTodos < ActiveRecord::Migration[4.2]
  def change
    rename_table :tasks, :todos
  end
end