Logo
Explore Help
Register Sign In
Nemcio/Redmine
1
0
Fork 0
You've already forked Redmine
mirror of https://github.com/redmine/redmine.git synced 2025-11-03 20:06:24 +01:00
Code Issues Packages Projects Releases Activity
Files
b51d40fe38f4f508edd03323b1d3dc30bc9931e3
Redmine/db/migrate/020_add_role_position.rb

11 lines
273 B
Ruby
Raw Normal View History

Merged rails-5.1 branch (#23630). git-svn-id: http://svn.redmine.org/redmine/trunk@16859 e93f8b46-1217-0410-a6f0-8f06a7374b81
2017-07-23 11:26:04 +00:00
class AddRolePosition < ActiveRecord::Migration[4.2]
added the ability to set the sort order for roles git-svn-id: http://redmine.rubyforge.org/svn/trunk@208 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-01-31 20:57:01 +00:00
def self.up
Removed 'not null' constraint on position fields. Previous migrations updated for new sqlite databases. git-svn-id: http://redmine.rubyforge.org/svn/trunk@864 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-10-22 21:07:13 +00:00
add_column :roles, :position, :integer, :default => 1
Restores migration broken by r8182 and removes default scope on Role (#9800). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8213 e93f8b46-1217-0410-a6f0-8f06a7374b81
2011-12-14 22:24:20 +00:00
Role.all.each_with_index {|role, i| role.update_attribute(:position, i+1)}
added the ability to set the sort order for roles git-svn-id: http://redmine.rubyforge.org/svn/trunk@208 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-01-31 20:57:01 +00:00
end
def self.down
remove_column :roles, :position
end
end
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.25.0 Page: 213ms Template: 1ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API