chore: initial MVP release

This commit is contained in:
2025-12-25 20:10:41 +05:30
Unverified
commit da00c33aa7
1624 changed files with 36367 additions and 0 deletions

11
schema/drop_table.sql Normal file
View File

@@ -0,0 +1,11 @@
SET FOREIGN_KEY_CHECKS = 0;
DROP TABLE IF EXISTS
`translations`,
`password_resets`,
`videos`,
`contributors`,
`users`,
`languages`;
SET FOREIGN_KEY_CHECKS = 1;