Add missing files from api06 merge.
This commit is contained in:
commit
e733264687
2 changed files with 20 additions and 0 deletions
10
app/models/node_tag.rb
Normal file
10
app/models/node_tag.rb
Normal 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
|
10
app/models/old_node_tag.rb
Normal file
10
app/models/old_node_tag.rb
Normal 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
|
Loading…
Add table
Reference in a new issue