diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-12 05:02:56 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-12 05:02:56 +0000 |
commit | 144ffaaabf278e75c859d7db2cd5bcaf279c7b96 (patch) | |
tree | 014acd7238f447f1651962bad3f442797974a1ce | |
parent | fbf0f6250dadf3fb3ba70b8b8f40b2c265b09939 (diff) |
Just adding a couple more demo data
-rw-r--r-- | populate.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/populate.sql b/populate.sql index b7dc783..f23edcc 100644 --- a/populate.sql +++ b/populate.sql @@ -42,6 +42,8 @@ CREATE TABLE operations ( CREATE INDEX idx_operations_created ON operations(created); INSERT INTO operations (name, created, description, organisation_id) VALUES ("Operation 1", UTC_TIMESTAMP(), "Operation 1 Description", 1); +INSERT INTO operations (name, created, description, organisation_id) VALUES ("Operation 2", UTC_TIMESTAMP(), "Operation 2 Description", 1); +INSERT INTO operations (name, created, description, organisation_id) VALUES ("Operation 3", UTC_TIMESTAMP(), "Operation 3 Description", 2); |