]> source.dussan.org Git - sonarqube.git/commitdiff
[SONAR-1973] Add a updated_at column
authorFabrice Bellingard <bellingard@gmail.com>
Wed, 13 Apr 2011 09:04:32 +0000 (11:04 +0200)
committerFabrice Bellingard <bellingard@gmail.com>
Wed, 20 Apr 2011 06:52:56 +0000 (08:52 +0200)
sonar-server/src/main/webapp/WEB-INF/db/migrate/191_create_review.rb

index 4ef60d38e60819215a6a3729c282c9b8f0bd6153..4978f21e5c5b4f4d28de9363535b6ef455fc7206 100644 (file)
@@ -1,47 +1,48 @@
-#
-# 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