Add missing files from api06 merge.

This commit is contained in:
Tom Hughes 2009-04-20 14:09:35 +00:00
commit e733264687
2 changed files with 20 additions and 0 deletions

10
app/models/node_tag.rb Normal file
View file

@ -0,0 +1,10 @@
class NodeTag < ActiveRecord::Base
set_table_name 'current_node_tags'
belongs_to :node, :foreign_key => 'id'
validates_presence_of :id
validates_length_of :k, :v, :maximum => 255, :allow_blank => true
validates_uniqueness_of :id, :scope => :k
validates_numericality_of :id, :only_integer => true
end

View file

@ -0,0 +1,10 @@
class OldNodeTag < ActiveRecord::Base
set_table_name 'node_tags'
belongs_to :user
validates_presence_of :id, :version
validates_length_of :k, :v, :maximum => 255, :allow_blank => true
validates_uniqueness_of :id, :scope => [:k, :version]
validates_numericality_of :id, :version, :only_integer => true
end