crawlnicle/drop_all.sql
Tyler Hallada cdc8eb9b02 Basic email verification done
Still need to add forms to confirmation page to allow resending and add
rate limiting.
2023-09-28 23:53:46 -04:00

12 lines
341 B
SQL

/* !!! THIS DROPS ALL TABLES IN THE DATABASE WHICH DELETES ALL DATA IN THE DATABASE !!!
*
* ONLY RUN IN DEVELOPMENT!
*/
drop table _sqlx_migrations cascade;
drop table entry cascade;
drop table feed cascade;
drop table users cascade;
drop table user_email_verification_token cascade;
drop type feed_type;
drop collation case_insensitive;