diff options
| author | Marius Peter <dev@marius-peter.com> | 2025-11-30 14:18:52 +0100 |
|---|---|---|
| committer | Marius Peter <dev@marius-peter.com> | 2025-11-30 14:18:52 +0100 |
| commit | 06add545b27f8f8601f605733b0be34e23c73cc6 (patch) | |
| tree | 88368551a6a8ae8415d816c9b5a4fb993dedbc75 | |
| parent | 89157ccd049aa43c080c731148731af4e84f77d5 (diff) | |
Update migration definition names.
| -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 a3e6def..dfb216e 100644 --- a/db/migrations.rkt +++ b/db/migrations.rkt @@ -56,7 +56,7 @@ (unique formula)))) (define-migration - "create table nutrient_value_sets" + "create table nutrient_value_sets and indexes" (list (create-table #:if-not-exists nutrient_value_sets @@ -96,7 +96,7 @@ "CREATE INDEX IF NOT EXISTS idx_nvs_prod ON nutrient_value_sets(fertilizer_product_id)")) (define-migration - "create table nutrient_values" + "create table nutrient_values and indexes" (list (create-table #:if-not-exists nutrient_values #:columns [value_set_id integer #:not-null] |