Skip to content

Commit

Permalink
sql
Browse files Browse the repository at this point in the history
  • Loading branch information
yakeJiang committed Nov 5, 2023
1 parent f9a4188 commit e18a29f
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
CREATE TABLE supplier_product (
id INTEGER PRIMARY KEY AUTOINCREMENT,
product_model TEXT NOT NULL,
delivery_time TEXT, -- SQLite does not have a Date type, so it's common to store dates as TEXT, REAL, or INTEGER
product_price REAL,
deliverable_quantity INTEGER,
trading_counterparty TEXT,
advance_payment_ratio REAL
);

0 comments on commit e18a29f

Please sign in to comment.