summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-10-22 21:07:29 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-10-22 21:07:29 +0000
commit5d1d778ed5aec1506f9ba08f8fca54f2e98ee1dc (patch)
treeb1c83f889f4de725c2722e96e247e507b8fcfff7 /db
parent8f7f305f7cf89c6086411ad846223bd2583f8369 (diff)
downloadredmine-5d1d778ed5aec1506f9ba08f8fca54f2e98ee1dc.tar.gz
redmine-5d1d778ed5aec1506f9ba08f8fca54f2e98ee1dc.zip
Removed 'not null' constraint on position fields.
Previous migrations updated for new sqlite databases. git-svn-id: http://redmine.rubyforge.org/svn/trunk@865 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db')
-rw-r--r--db/migrate/076_allow_null_position.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/db/migrate/076_allow_null_position.rb b/db/migrate/076_allow_null_position.rb
new file mode 100644
index 000000000..45008d653
--- /dev/null
+++ b/db/migrate/076_allow_null_position.rb
@@ -0,0 +1,14 @@
+class AllowNullPosition < ActiveRecord::Migration
+ def self.up
+ # removes the 'not null' constraint on position fields
+ change_column :issue_statuses, :position, :integer, :default => 1
+ change_column :roles, :position, :integer, :default => 1
+ change_column :trackers, :position, :integer, :default => 1
+ change_column :boards, :position, :integer, :default => 1
+ change_column :enumerations, :position, :integer, :default => 1
+ end
+
+ def self.down
+ # nothing to do
+ end
+end