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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-02-20 16:59:59 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-02-20 17:39:27 +0300
commit3d52e139b13ad077286f2f9f46b7e98f43ad9564 (patch)
tree22c70561b0f64851d938e44661aafeed3a2c80b2 /db/migrate/20160220123949_rename_tasks_to_todos.rb
parent408e010d65e7e2e2b64a694e12d44636d7d81dec (diff)
Rename Tasks to Todos
Diffstat (limited to 'db/migrate/20160220123949_rename_tasks_to_todos.rb')
-rw-r--r--db/migrate/20160220123949_rename_tasks_to_todos.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20160220123949_rename_tasks_to_todos.rb b/db/migrate/20160220123949_rename_tasks_to_todos.rb
new file mode 100644
index 00000000000..30c10d27146
--- /dev/null
+++ b/db/migrate/20160220123949_rename_tasks_to_todos.rb
@@ -0,0 +1,5 @@
+class RenameTasksToTodos < ActiveRecord::Migration
+ def change
+ rename_table :tasks, :todos
+ end
+end