From cb40f864b4dfc87b2a59557f76c595716636c015 Mon Sep 17 00:00:00 2001 From: fredrikphotowall <35255659+fredrikphotowall@users.noreply.github.com> Date: Mon, 19 Apr 2021 09:22:29 +0200 Subject: [PATCH] P5-7130 Add width_mm and height_mm order row fields (#213) --- migrations/000.330.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 migrations/000.330.sql diff --git a/migrations/000.330.sql b/migrations/000.330.sql new file mode 100644 index 0000000..70fe75d --- /dev/null +++ b/migrations/000.330.sql @@ -0,0 +1,5 @@ +-- P5-7130 Add width_mm and height_mm order row fields + +INSERT INTO "order-row_fields" (fieldid, name) VALUES + (161, 'width_mm'), + (162, 'height_mm');