Browse Source
* Add location startdate column to the db * Display the schemes with active locations only when selecting a scheme for a case log * When selecting a location for case log, only show active locations * Add startdate to the form * only display the number of active locations in the appended text * Compare date instead of time * Put location questions and hints into a translation file * lint * content changepull/745/head
kosiakkatrina
2 years ago
committed by
GitHub
13 changed files with 193 additions and 31 deletions
@ -0,0 +1,7 @@
|
||||
class AddLocationStartdate < ActiveRecord::Migration[7.0] |
||||
def change |
||||
change_table :locations, bulk: true do |t| |
||||
t.column :startdate, :datetime |
||||
end |
||||
end |
||||
end |
Loading…
Reference in new issue