From 18b2e14e782786d0c7a4aaa82171ae3a76494d0d Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Mon, 22 Apr 2024 14:07:00 +0200 Subject: [PATCH] Sample data --- app/Migrations/0020-data.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 app/Migrations/0020-data.sql diff --git a/app/Migrations/0020-data.sql b/app/Migrations/0020-data.sql new file mode 100644 index 0000000..2cac31f --- /dev/null +++ b/app/Migrations/0020-data.sql @@ -0,0 +1,4 @@ +-- Inserts here +INSERT INTO Customers (CustomerID, Name, Address) VALUES + (1, 'John Doe', '123 Main St'), + (2, 'Jane Smith', '456 Elm St'); \ No newline at end of file