diff --git a/app/models/contributer.rb b/app/models/contributer.rb index d525ae1..cca52b7 100644 --- a/app/models/contributer.rb +++ b/app/models/contributer.rb @@ -1,5 +1,4 @@ class Contributer < CDQManagedObject - scope :all, sort_by(:name) scope :starts_with_s, where(:name).begins_with('s').sort_by(:name) def cell diff --git a/schemas/0001_initial.rb b/schemas/0001_initial.rb index af34ed2..52d3913 100644 --- a/schemas/0001_initial.rb +++ b/schemas/0001_initial.rb @@ -1,5 +1,7 @@ schema "0001 initial" do entity "Contributer" do string :name, optional: false + + datetime :created_at end end