Defect #8028
closedMigration error under MSSQL 2000
0%
Description
Hello,
I tried to install the Redmine on MSSQL 2000 and I had to change a migration file, because some kind of error occured on MSSQL side. (cannot change a column because it is in use by other object)
091_change_changesets_revision_to_string.rb
-------------------------------------------
line 3 change_column :changesets, :revision, :string, :null => false
-------------------------------------------
patched:
remove_index :changesets, :name => :changesets_repos_rev
change_column :changesets, :revision, :string, :null => false
add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev
Regards
Petr
Updated by Jean-Philippe Lang over 13 years ago
MSSQL is not officially supported (and totally untested) but I'm curious about how Redmine behaves with it.
Did all other migrations run fine?
Updated by Petr Pospisil over 13 years ago
yep, only this one.
But I don't know if all pages are working as expected, I tested only migration.
Updated by Go MAEDA about 7 years ago
- Status changed from New to Closed
- Resolution set to Wont fix
Since SQL Server 2000 is too old, I am closing this issue.