Browse Source
* start date validations * remove condition * move code * lint fixes * updates * content update * remove unneeded validations * validations * review changes * Update app/models/validations/date_validations.rb Co-authored-by: baarkerlounger <5101747+baarkerlounger@users.noreply.github.com> * update error messages * lint fixes * fix specs Co-authored-by: baarkerlounger <5101747+baarkerlounger@users.noreply.github.com>pull/647/head
Dushan
3 years ago
committed by
GitHub
12 changed files with 128 additions and 25 deletions
@ -0,0 +1,5 @@ |
|||||||
|
class AddReferenceToCaseLog < ActiveRecord::Migration[7.0] |
||||||
|
def change |
||||||
|
add_reference :case_logs, :scheme, foreign_key: true |
||||||
|
end |
||||||
|
end |
@ -0,0 +1,5 @@ |
|||||||
|
class AddEndDateToSchemes < ActiveRecord::Migration[7.0] |
||||||
|
def change |
||||||
|
add_column :schemes, :end_date, :datetime |
||||||
|
end |
||||||
|
end |
Loading…
Reference in new issue