mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-18 08:02:03 +03:00
c3bb0257f0
* 🔧 new use rate limiting env variables * 🗃️ new Users table for rate limiting * ✨limit user's requests number per day * ✨ limit user's brain size * docs(readme): updated with new migration --------- Co-authored-by: Stan Girard <girard.stanislas@gmail.com>
5 lines
92 B
SQL
5 lines
92 B
SQL
create table if not exists users(
|
|
date text,
|
|
user_id text,
|
|
requests_count int
|
|
); |