translate item of plsql

This commit is contained in:
fpellet 2019-12-13 09:42:13 +01:00
parent 630fe119ce
commit 5803be91ca

8
postgres/item.sql Normal file
View File

@ -0,0 +1,8 @@
DROP TABLE IF EXISTS item;
CREATE TABLE item
(
name character varying(100) NOT NULL,
sell_in numeric(6) NOT NULL,
quality numeric(6) NOT NULL
);