njord 0.5.0

A versatile, feature-rich Rust ORM.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
SQLite format 3@  .n�
QEQ�q�5tableproductsproductsCREATE TABLE "products"
(
    id       INTEGER
        primary key,
    name TEXT not null,
    price DECIMAL not null,
    user_id INTEGER references users(id)
    -- foreign key (user_id) references users(id)
)�,�7tableusersusersCREATE TABLE "users"
(
    id       INTEGER
        primary key,
    username TEXT not null,
    email    TEXT not null,
    address  TEXT not null
)
���username2email2address2usernameemailaddress
��	Product 1@%��G�{