From 0228b9b75f2e8c65b9ee6f2e6d4a5bca69c1fcb8 Mon Sep 17 00:00:00 2001 From: Martin Carlsson Date: Wed, 21 Apr 2021 09:51:31 +0200 Subject: [PATCH] P5-7135 add order id to samples (#215) --- migrations/000.331.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 migrations/000.331.sql diff --git a/migrations/000.331.sql b/migrations/000.331.sql new file mode 100644 index 0000000..d75d07a --- /dev/null +++ b/migrations/000.331.sql @@ -0,0 +1,3 @@ +-- P5-7135: add order id to samples + +alter table samples add column order_id integer references orders;