summaryrefslogtreecommitdiffstats
path: root/db/migrate/010_create_comments.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/010_create_comments.rb')
-rw-r--r--db/migrate/010_create_comments.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/010_create_comments.rb b/db/migrate/010_create_comments.rb
index d804140b0..29e1116af 100644
--- a/db/migrate/010_create_comments.rb
+++ b/db/migrate/010_create_comments.rb
@@ -4,7 +4,7 @@ class CreateComments < ActiveRecord::Migration
t.column :commented_type, :string, :limit => 30, :default => "", :null => false
t.column :commented_id, :integer, :default => 0, :null => false
t.column :author_id, :integer, :default => 0, :null => false
- t.column :comment, :text
+ t.column :comments, :text
t.column :created_on, :datetime, :null => false
t.column :updated_on, :datetime, :null => false
end