georm/tests/fixtures/simple_struct.sql
Lucien Cartier-Tilet 91d7651eca
All checks were successful
CI / tests (push) Successful in 4m20s
feat: add foreign one_to_one relationships
2025-03-02 16:12:20 +01:00

10 lines
248 B
SQL

INSERT INTO biographies (content)
VALUES ('Some text'),
('Some other text'),
('Biography for no one');
INSERT INTO authors (name, biography_id)
VALUES ('J.R.R. Tolkien', 2),
('George Orwell', NULL),
('Jack London', 1);