mirror of
				https://github.com/redmine/redmine.git
				synced 2025-10-31 18:36:07 +01:00 
			
		
		
		
	* Updated Polish translation (Mariusz Olejnik). * Fixed: Projects should be listed with case mixed. git-svn-id: http://redmine.rubyforge.org/svn/trunk@917 e93f8b46-1217-0410-a6f0-8f06a7374b81
		
			
				
	
	
		
			10 lines
		
	
	
		
			208 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			208 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| class AddUserPreferencesTimeZone < ActiveRecord::Migration
 | |
|   def self.up
 | |
|     add_column :user_preferences, :time_zone, :string
 | |
|   end
 | |
| 
 | |
|   def self.down
 | |
|     remove_column :user_preferences, :time_zone
 | |
|   end
 | |
| end
 |