diff options
| author | Marius Peter <dev@marius-peter.com> | 2025-11-30 12:04:09 +0100 |
|---|---|---|
| committer | Marius Peter <dev@marius-peter.com> | 2025-11-30 12:04:09 +0100 |
| commit | 7e507567859f2db33776bb39b18f164e36f7e693 (patch) | |
| tree | 9f0dfdc353ca505ba19cc4ef9a8c3a3d32ccaac7 /db/migrations.rkt | |
| parent | 1a8775dfe5786e71e7486e0d26d7dda627db2335 (diff) | |
Refactor 'effective-on' to 'target-date'.
Diffstat (limited to 'db/migrations.rkt')
| -rw-r--r-- | db/migrations.rkt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/migrations.rkt b/db/migrations.rkt index a312623..d4b8356 100644 --- a/db/migrations.rkt +++ b/db/migrations.rkt @@ -119,9 +119,9 @@ (list (create-table #:if-not-exists nutrient_targets #:columns [id integer #:not-null] ;; ISO8601 date - [effective_on text #:not-null] + [target_date text #:not-null] #:constraints (primary-key id) - (unique effective_on)))) + (unique target_date)))) ;;;;;;;; ;; CROPS |