georm/tests/fixtures/simple_struct.sql
Lucien Cartier-Tilet 49602c7c44
Some checks failed
CI / tests (push) Has been cancelled
feat: add foreign one_to_one relationships
2025-03-02 16:11:47 +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);