Velocipede's User, Sales, and Bike Inventory Web App

10 lines
147 B

class Task < ActiveRecord::Base
attr_accessible :task, :notes, :done, :task_list_id
belongs_to :task_list
def to_s
self.task
end
end