Author: assaf
Date: Wed May 14 02:39:33 2008
New Revision: 656182

URL: http://svn.apache.org/viewvc?rev=656182&view=rev
Log:
Use a

Removed:
    ode/sandbox/singleshot/vendor/plugins/annotate_models/ChangeLog
    ode/sandbox/singleshot/vendor/plugins/annotate_models/README
    ode/sandbox/singleshot/vendor/plugins/annotate_models/lib/annotate_models.rb
    
ode/sandbox/singleshot/vendor/plugins/annotate_models/tasks/annotate_models_tasks.rake
Modified:
    ode/sandbox/singleshot/app/models/person.rb
    ode/sandbox/singleshot/app/models/stakeholder.rb
    ode/sandbox/singleshot/app/models/task.rb

Modified: ode/sandbox/singleshot/app/models/person.rb
URL: 
http://svn.apache.org/viewvc/ode/sandbox/singleshot/app/models/person.rb?rev=656182&r1=656181&r2=656182&view=diff
==============================================================================
--- ode/sandbox/singleshot/app/models/person.rb (original)
+++ ode/sandbox/singleshot/app/models/person.rb Wed May 14 02:39:33 2008
@@ -3,16 +3,16 @@
 #
 # Table name: people
 #
-#  id         :integer       not null, primary key
-#  identity   :string(255)   not null
-#  fullname   :string(255)   not null
-#  email      :string(255)   not null
-#  language   :string(5)     
-#  timezone   :integer(4)    
-#  password   :string(64)    
-#  access_key :string(32)    not null
-#  created_at :datetime      
-#  updated_at :datetime      
+#  id         :integer         not null, primary key
+#  identity   :string(255)     not null
+#  fullname   :string(255)     not null
+#  email      :string(255)     not null
+#  language   :string(5)
+#  timezone   :integer(4)
+#  password   :string(64)
+#  access_key :string(32)      not null
+#  created_at :datetime
+#  updated_at :datetime
 #
 
 require 'sha1'

Modified: ode/sandbox/singleshot/app/models/stakeholder.rb
URL: 
http://svn.apache.org/viewvc/ode/sandbox/singleshot/app/models/stakeholder.rb?rev=656182&r1=656181&r2=656182&view=diff
==============================================================================
--- ode/sandbox/singleshot/app/models/stakeholder.rb (original)
+++ ode/sandbox/singleshot/app/models/stakeholder.rb Wed May 14 02:39:33 2008
@@ -3,12 +3,12 @@
 #
 # Table name: stakeholders
 #
-#  id         :integer       not null, primary key
-#  task_id    :integer       not null
-#  person_id  :integer       not null
-#  role       :string(255)   not null
-#  created_at :datetime      
-#  updated_at :datetime      
+#  id         :integer         not null, primary key
+#  task_id    :integer         not null
+#  person_id  :integer         not null
+#  role       :string(255)     not null
+#  created_at :datetime
+#  updated_at :datetime
 #
 
 # Represents a stakeholder in the task.  Identifies the person and their role.

Modified: ode/sandbox/singleshot/app/models/task.rb
URL: 
http://svn.apache.org/viewvc/ode/sandbox/singleshot/app/models/task.rb?rev=656182&r1=656181&r2=656182&view=diff
==============================================================================
--- ode/sandbox/singleshot/app/models/task.rb (original)
+++ ode/sandbox/singleshot/app/models/task.rb Wed May 14 02:39:33 2008
@@ -3,20 +3,20 @@
 #
 # Table name: tasks
 #
-#  id           :integer       not null, primary key
-#  title        :string(255)   not null
-#  description  :string(255)   not null
-#  priority     :integer(1)    default(1), not null
-#  due_on       :date          
-#  state        :string(255)   not null
-#  frame_url    :string(255)   
-#  outcome_url  :string(255)   
-#  outcome_type :string(255)   
-#  access_key   :string(32)    
-#  data         :text          not null
-#  version      :integer       default(0), not null
-#  created_at   :datetime      
-#  updated_at   :datetime      
+#  id           :integer         not null, primary key
+#  title        :string(255)     not null
+#  description  :string(255)     not null
+#  priority     :integer(1)      default(1), not null
+#  due_on       :date
+#  state        :string(255)     not null
+#  frame_url    :string(255)
+#  outcome_url  :string(255)
+#  outcome_type :string(255)
+#  access_key   :string(32)
+#  data         :text            not null
+#  version      :integer         default(0), not null
+#  created_at   :datetime
+#  updated_at   :datetime
 #
 
 require 'openssl'


Reply via email to