mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-27 13:36:06 +10:00
12 lines
171 B
Ruby
12 lines
171 B
Ruby
class Environment < ActiveRecord::Base
|
|
belongs_to :project
|
|
|
|
has_many :deployments
|
|
|
|
validates_presence_of :name
|
|
|
|
def last_deployment
|
|
deployments.last
|
|
end
|
|
end
|