diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-09 18:25:37 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-09 18:25:37 +0000 |
commit | 8195f95464bed5dd08305589f305a23bbd6ad245 (patch) | |
tree | f4c0bc29b2b0af4a16d16e5d51577dc46754441e /db/migrate/084_change_auth_sources_account_limit.rb | |
parent | 494a6ecfb0a90bb3ddf46f3ee5a886a3496bea30 (diff) | |
download | redmine-8195f95464bed5dd08305589f305a23bbd6ad245.tar.gz redmine-8195f95464bed5dd08305589f305a23bbd6ad245.zip |
Fixes migrations that change string limits for sqlite.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1222 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db/migrate/084_change_auth_sources_account_limit.rb')
-rw-r--r-- | db/migrate/084_change_auth_sources_account_limit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/084_change_auth_sources_account_limit.rb b/db/migrate/084_change_auth_sources_account_limit.rb index 6a933b894..cc127b439 100644 --- a/db/migrate/084_change_auth_sources_account_limit.rb +++ b/db/migrate/084_change_auth_sources_account_limit.rb @@ -1,6 +1,6 @@ class ChangeAuthSourcesAccountLimit < ActiveRecord::Migration def self.up - change_column :auth_sources, :account, :string + change_column :auth_sources, :account, :string, :limit => nil end def self.down |