Mercurial > hg > soundsoftware-site
view db/migrate/20110224000000_add_repositories_path_encoding.rb @ 735:8653bddf26a6 feature_318
Drop out of loop as soon as the first LDAP auth succeeds for a suitable role (fixing #316)
author | Chris Cannam |
---|---|
date | Fri, 04 Nov 2011 14:51:08 +0000 |
parents | 051f544170fe |
children |
line wrap: on
line source
class AddRepositoriesPathEncoding < ActiveRecord::Migration def self.up add_column :repositories, :path_encoding, :string, :limit => 64, :default => nil end def self.down remove_column :repositories, :path_encoding end end