mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
translate item of plsql
This commit is contained in:
parent
630fe119ce
commit
5803be91ca
8
postgres/item.sql
Normal file
8
postgres/item.sql
Normal 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
|
||||
);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user