Files
georm/tests/fixtures/simple_struct.sql
T

10 lines
248 B
SQL
Raw Normal View History

INSERT INTO biographies (content)
VALUES ('Some text'),
2025-03-02 16:07:30 +01:00
('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);