This website requires JavaScript.
Explore
Help
Sign in
kotovalexarian-likes-gitlab
/
gitlab-org--gitlab-foss
Watch
1
Star
0
Fork
You've already forked gitlab-org--gitlab-foss
0
Code
Releases
Activity
bcc988a6c6
gitlab-org--gitlab-foss
/
db
/
migrate
/
20160220123949_rename_tasks_to_todos.rb
6 lines
111 B
Ruby
Raw
Normal View
History
Unescape
Escape
Add version 4.2 to all existing migrations DB schema generated by a migration may look different in rails 4 and 5 (because rails 5 may use different default values). For this reason it's important to explicitly set for which rails version a migration was written for. See https://stackoverflow.com/questions/35929869/activerecordmigration-deprecation-warning-asks-for-rails-version-but-im-no/35930912#35930912
2018-11-13 02:27:31 -05:00
class
RenameTasksToTodos
<
ActiveRecord
::
Migration
[
4
.
2
]
Rename Tasks to Todos
2016-02-20 08:59:59 -05:00
def
change
rename_table
:tasks
,
:todos
end
end
Copy permalink