added tags controller functional test

This commit is contained in:
albert
2011-01-31 02:23:35 -05:00
parent 9837735c93
commit 28b42e791c
6 changed files with 77 additions and 4 deletions

View File

@@ -3,7 +3,6 @@ class CreateTags < ActiveRecord::Migration
create_table :tags do |t|
t.column :name, :string, :null => false
t.column :post_count, :integer, :null => false, :default => 0
t.column :view_count, :integer, :null => false, :default => 0
t.column :category, :integer, :null => false, :default => 0
t.column :related_tags, :text
t.column :related_tags_updated_at, :datetime