Files
fastapi_tutor_yb/debug/orm_app/users_posts.db
T

19 lines
16 KiB
Plaintext
Raw Normal View History

2026-09-19 10:41:18 +08:00
SQLite format 3@

.~Y
ø Í �xƒOtablepostspostsCREATE TABLE posts (
id INTEGER NOT NULL,
title VARCHAR(200) NOT NULL,
content VARCHAR(1000),
user_id INTEGER NOT NULL,
created_at DATETIME NOT NULL,
PRIMARY KEY (id),
FOREIGN KEY(user_id) REFERENCES users (id)
)�D‚gtableusersusersCREATE TABLE users (
id INTEGER NOT NULL,
name VARCHAR(50) NOT NULL,
email VARCHAR(100) NOT NULL,
created_at DATETIME NOT NULL,
PRIMARY KEY (id),
UNIQUE (email)
))=indexsqlite_autoindex_users_1users