chore: import upstream snapshot with attribution
This commit is contained in:
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
CREATE TABLE customers (
|
||||
id SERIAL PRIMARY KEY,
|
||||
name TEXT NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE orders (
|
||||
id SERIAL PRIMARY KEY,
|
||||
customer_id INT,
|
||||
total NUMERIC
|
||||
);
|
||||
|
||||
ALTER TABLE orders ADD CONSTRAINT fk_customer FOREIGN KEY (customer_id) REFERENCES customers(id);
|
||||
Reference in New Issue
Block a user