Created
October 9, 2013 11:00
-
-
Save thomasstr/6899520 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Project < ActiveRecord::Base | |
# Sjekker at kolonnen navn er fyllt ut. | |
validates :name, presence: true | |
validates :client_id, presence: true | |
belongs_to :admin | |
belongs_to :client | |
has_many :registerhours, dependent: :destroy | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Registerhour < ActiveRecord::Base | |
belongs_to :project | |