-#
-# Sonar, entreprise quality control tool.
-# Copyright (C) 2008-2011 SonarSource
-# mailto:contact AT sonarsource DOT com
-#
-# Sonar is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 3 of the License, or (at your option) any later version.
-#
-# Sonar is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with Sonar; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
-#
-
-#
-# Sonar 2.8
-#
-class CreateReview < ActiveRecord::Migration
-
- def self.up
- create_table 'reviews' do |t|
- t.column 'created_at', :datetime
- t.column 'user_id', :integer, :null => true
- t.column 'review_type', :string, :null => true, :limit => 10
- t.column 'status', :string, :null => true, :limit => 10
- t.column 'severity', :string, :null => true, :limit => 10
- t.column 'rule_failure_id', :integer, :null => true
- t.column 'resource_id', :integer, :null => true
- t.column 'resource_line', :integer, :null => true
- end
-
- create_table 'review_comments' do |t|
- t.column 'created_at', :datetime
- t.column 'review_id', :integer
- t.column 'user_id', :integer, :null => true
- t.column 'review_text', :text, :null => true
- end
-
- end
-
-end
+#\r
+# Sonar, entreprise quality control tool.\r
+# Copyright (C) 2008-2011 SonarSource\r
+# mailto:contact AT sonarsource DOT com\r
+#\r
+# Sonar is free software; you can redistribute it and/or\r
+# modify it under the terms of the GNU Lesser General Public\r
+# License as published by the Free Software Foundation; either\r
+# version 3 of the License, or (at your option) any later version.\r
+#\r
+# Sonar is distributed in the hope that it will be useful,\r
+# but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
+# Lesser General Public License for more details.\r
+#\r
+# You should have received a copy of the GNU Lesser General Public\r
+# License along with Sonar; if not, write to the Free Software\r
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02\r
+#\r
+\r
+#\r
+# Sonar 2.8\r
+#\r
+class CreateReview < ActiveRecord::Migration\r
+\r
+ def self.up\r
+ create_table 'reviews' do |t|\r
+ t.column 'created_at', :datetime\r
+ t.column 'updated_at', :datetime\r
+ t.column 'user_id', :integer, :null => true\r
+ t.column 'review_type', :string, :null => true, :limit => 10\r
+ t.column 'status', :string, :null => true, :limit => 10\r
+ t.column 'severity', :string, :null => true, :limit => 10\r
+ t.column 'rule_failure_id', :integer, :null => true \r
+ t.column 'resource_id', :integer, :null => true \r
+ t.column 'resource_line', :integer, :null => true \r
+ end\r
+ \r
+ create_table 'review_comments' do |t|\r
+ t.column 'created_at', :datetime\r
+ t.column 'review_id', :integer\r
+ t.column 'user_id', :integer, :null => true\r
+ t.column 'review_text', :text, :null => true\r
+ end\r
+ \r
+ end\r
+\r
+end\r