Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
7314b69
fix: properly hide current password field for admin editing other users
ril3y Oct 11, 2025
0186c5c
fix(ui): correct password input field styling in EditUserModal
ril3y Oct 11, 2025
574a48c
fix(validation): add complete password validation to EditUserModal
ril3y Oct 11, 2025
e52de11
security: remove hardcoded default credentials from login page
ril3y Oct 11, 2025
81b6d85
feat(datasheets): standardize datasheet storage and implement async d…
ril3y Oct 11, 2025
32f277b
fix(enrichment): add Mouser enrichment requirements and improve datas…
ril3y Oct 11, 2025
73e933f
fix: preserve supplier part numbers after enrichment
ril3y Oct 11, 2025
871ee21
fix(suppliers): improve CSV/Excel file detection for DigiKey and Mouser
ril3y Oct 11, 2025
ad0cecd
fix: resolve part creation bug with None supplier value
ril3y Oct 11, 2025
e6bf51f
fix: preserve location images and emojis during updates
ril3y Oct 11, 2025
66e9721
fix(parts): include emoji field in part creation API response
ril3y Oct 11, 2025
247f26a
fix(suppliers): improve DigiKey CSV file detection with case-insensit…
ril3y Oct 11, 2025
f7c4d47
feat(tools): implement comprehensive tool management system (Task 4)
ril3y Oct 11, 2025
5b5d7ce
feat(tools): implement complete tools frontend UI
ril3y Oct 11, 2025
095e133
fix(tools): correct lucide-react icon imports
ril3y Oct 12, 2025
7f4e296
fix(tools): fix tool validation, display, and image handling
ril3y Oct 12, 2025
b5379a4
fix(tools): apply theme colors to ToolDetailModal and fix maintenance…
ril3y Oct 12, 2025
ae696c7
feat(tools): implement comprehensive tool management system
ril3y Oct 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion MakerMatrix/database/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,21 @@

from sqlmodel import Session, SQLModel
from MakerMatrix.models.models import engine
from MakerMatrix.models.rate_limiting_models import * # Import rate limiting models
# Import all model modules to register them with SQLModel metadata
from MakerMatrix.models.rate_limiting_models import *
from MakerMatrix.models.supplier_config_models import *
from MakerMatrix.models.part_models import *
from MakerMatrix.models.location_models import *
from MakerMatrix.models.category_models import *
from MakerMatrix.models.system_models import *
from MakerMatrix.models.user_models import *
from MakerMatrix.models.order_models import *
from MakerMatrix.models.task_models import *
from MakerMatrix.models.ai_config_model import *
from MakerMatrix.models.printer_config_model import *
from MakerMatrix.models.csv_import_config_model import *
from MakerMatrix.models.label_template_models import *
from MakerMatrix.models.part_metadata_models import *
from sqlalchemy import inspect, event

# Database URL for backup and utility operations
Expand Down
Loading
Loading