
- Re-factor - Remove code for notifications - Remove addons - Remove travis-core gem. - Ignore logs directory only - Move core tests to spec/lib
6 lines
144 B
Ruby
6 lines
144 B
Ruby
class Log::Part < Travis::LogsModel
|
|
self.table_name = 'log_parts'
|
|
|
|
validates :log_id, presence: true, numericality: { greater_than: 0 }
|
|
end
|