diff options
author | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-03-23 14:48:27 +0300 |
---|---|---|
committer | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-03-23 14:48:27 +0300 |
commit | 5b0b6fc434659f13c0ff1f898c4b5d7ce136d992 (patch) | |
tree | d659f9ff98e65e3d276df097937ba6e03bf73d0a /src/main/sql/1_create-database.up.sql | |
parent | cad2254f0eaf770a169432296916a2acafe18b4a (diff) |
fix(db): add forgotten name to product
Diffstat (limited to 'src/main/sql/1_create-database.up.sql')
-rw-r--r-- | src/main/sql/1_create-database.up.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/sql/1_create-database.up.sql b/src/main/sql/1_create-database.up.sql index c1a63f4..c9179de 100644 --- a/src/main/sql/1_create-database.up.sql +++ b/src/main/sql/1_create-database.up.sql @@ -1,5 +1,6 @@ CREATE TABLE products( id INTEGER PRIMARY KEY, + name TEXT NOT NULL, type TEXT NOT NULL, height INTEGER NOT NULL, width INTEGER NOT NULL, |