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: f16b37537f3c60b4af4d001274ff5f3da5618eb5 (plain)
1
2
3
4
5
6
# rubocop:disable all
class RenameTasksToTodos < ActiveRecord::Migration
  def change
    rename_table :tasks, :todos
  end
end