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: 30c10d27146e7a8a356630eadaf33660b7a631a8 (plain)
1
2
3
4
5
class RenameTasksToTodos < ActiveRecord::Migration
  def change
    rename_table :tasks, :todos
  end
end