Change crop canonical_name from integer to text.

Commit
cff908d8f986669dcf5b489517ea161b20adde95
Author
Marius Peter <dev@marius-peter.com>
Author date
Committer
Marius Peter <dev@marius-peter.com>
Committer date
db/migrations.rkt
index d4b83562..a3e6defe 100644..100644
@@ -130,7 +130,7 @@
130 130 (define-migration "create table crops"
131 131 (list (create-table #:if-not-exists crops
132 132 #:columns [id integer #:not-null]
133 Removed: [canonical_name integer #:not-null]
133 Added: [canonical_name text #:not-null]
134 134 #:constraints (primary-key id)
135 135 (unique canonical_name))))
136 136