4 Commits

Author SHA1 Message Date
Automated Action
f1b8b8cbee Fix migration to handle existing tables and columns
- Added helper functions to check if tables, columns, and indexes already exist
- Modified upgrade function to skip operations if objects already exist
- Added try-except blocks to handle potential errors during creation operations
- Updated downgrade function to check existence before dropping objects
- Fixed compatibility with databases where tables are already created
2025-05-16 02:16:15 +00:00
Automated Action
03bb5a7929 Fix Alembic migration dependency reference
Update user_auth_migration.py with correct revision IDs:
- Change revision from 2 to 54ab38f52c12
- Update down_revision from 1 to 1a39b3495612 to properly reference initial migration
2025-05-16 02:10:54 +00:00
Automated Action
69f6a404bd Add user authentication to Todo application
- Create User model and schema
- Implement password hashing with bcrypt
- Add JWT token-based authentication
- Create user and auth endpoints
- Update todo endpoints with user authentication
- Add alembic migration for user model
- Update README with new features
2025-05-16 02:07:51 +00:00
Automated Action
b399d38a23 Implement FastAPI Todo Application 2025-05-16 01:35:23 +00:00