This column is for specific SCM.
Git 7 days problem (#7146) can not resolve unless storing branches info in database.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5762
e93f8b46-1217-0410-a6f0-
8f06a7374b81
has_many :changesets, :order => "#{Changeset.table_name}.committed_on DESC, #{Changeset.table_name}.id DESC"
has_many :changes, :through => :changesets
+ serialize :extra_info
+
# Raw SQL to delete changesets and changes in the database
# has_many :changesets, :dependent => :destroy is too slow for big repositories
before_destroy :clear_changesets
--- /dev/null
+class AddRepositoriesExtraInfo < ActiveRecord::Migration
+ def self.up
+ add_column :repositories, :extra_info, :text
+ end
+
+ def self.down
+ remove_column :repositories, :extra_info
+ end
+end