feat(goods): add editable custom products
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
CREATE TYPE "OriginGoodSource" AS ENUM ('SDS', 'CUSTOM');
|
||||
|
||||
ALTER TABLE "origin_goods"
|
||||
ADD COLUMN "source" "OriginGoodSource" NOT NULL DEFAULT 'SDS';
|
||||
|
||||
CREATE INDEX "origin_goods_source_idx" ON "origin_goods"("source");
|
||||
Reference in New Issue
Block a user