Fix #592 be able to set default tags for a project. Default tags can now be specified when creating or editing a project, and they will be applied to any new todos created in that project.

This commit is contained in:
Eric Allen 2009-03-01 18:07:25 -05:00
parent 3d3b658763
commit 42bea2490b
8 changed files with 122 additions and 13 deletions

View file

@ -0,0 +1,9 @@
class AddDefaultTagsToProject < ActiveRecord::Migration
def self.up
add_column :projects, :default_tags, :string
end
def self.down
remove_column :projects, :default_tags
end
end