Categorygithub.com/HowkaCoder/remont
modulepackage
0.0.0-20241221154113-3a2c17f1dc2c
Repository: https://github.com/howkacoder/remont.git
Documentation: pkg.go.dev

# README

remont

+---------------------------+ | users | +---------------------------+ | ID (PK) | | FirstName | | LastName | | MiddleName | | Email (unique) | | Password | | PhoneNumber | | CreatedAt | | UserType | | DeactivatedAt | +---------------------------+

+---------------------------+ | clients | +---------------------------+ | UserID (PK, FK -> users) | +---------------------------+

+---------------------------+ | managers | +---------------------------+ | UserID (PK, FK -> users) | +---------------------------+

+---------------------------+ | workers | +---------------------------+ | UserID (PK, FK -> users) | | ProjectID (unique, FK -> projects) | +---------------------------+

+---------------------------+ | projects | +---------------------------+ | ID (PK) | | Name | | ClientID (FK -> clients) | | ServiceDeposit | | MaterialDeposit | | CreatedAt | | CompletedAt | +---------------------------+

+---------------------------+ | manager_projects | +---------------------------+ | ManagerID (PK, FK -> managers) | | ProjectID (PK, FK -> projects) | +---------------------------+

+---------------------------+ | documents | +---------------------------+ | ID (PK) | | Name | | File | | ProjectID (FK -> projects)| | CreatedAt | +---------------------------+

+---------------------------+ | acts | +---------------------------+ | ID (PK) | | Name | | UnitPrice | | Quantity | | ProjectID (FK -> projects)| | CreatedAt | +---------------------------+

+---------------------------+ | services | +---------------------------+ | ID (PK) | | Name | | Description | | UnitPrice | | CreatedAt | | ArchivedAt | +---------------------------+

# Packages

No description provided by the author

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author