Add keywords to transactions table

Keywords are now saved to the merchandise_list form_list when selling to the
shop.
This commit is contained in:
2021-02-09 23:46:42 -05:00
parent 80345c3a6f
commit a64caa4081
6 changed files with 19 additions and 7 deletions

View File

@@ -49,6 +49,7 @@ CREATE TABLE "transactions" (
"is_sell" BOOLEAN NOT NULL,
"quantity" INTEGER NOT NULL,
"amount" INTEGER NOT NULL,
"keywords" TEXT[] NOT NULL DEFAULT '{}',
"created_at" timestamp(3) NOT NULL,
"updated_at" timestamp(3) NOT NULL
);