SQLite format 3 @ .n�
Q EQ �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
)
� �� username2email2address2 usernameemailaddress
� � Product 1@%��G�{