Changes between Version 13 and Version 14 of DDL
- Timestamp:
- 08/28/25 14:43:15 (11 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DDL
v13 v14 1 1 = Entity Sets 2 2 3 - Company(company_id, company_n ame, company_address, company_vat, company_bank_accounts, company_email, created_at, updated_at)3 - Company(company_id, company_no, company_name, company_representative, company_logo_url, company_address, company_vat, company_bank_accounts, company_email, created_at, updated_at) 4 4 5 5 - User(user_id, user_name, user_email, password, user_role, company_id, created_at, updated_at) 6 6 *Reference: company_id → Company(company_id) 7 7 8 - Employee(employee_id, employee_name, employee_email, employee_role, employee_status, employee_address, employee_ bank_info, employee_cv_ref, employee_photo_ref, company_id, created_at, updated_at)8 - Employee(employee_id, employee_name, employee_email, employee_role, employee_status, employee_address, employee_iban, employee_cv_ref, employee_photo_ref, company_id, created_at, updated_at) 9 9 *Reference: company_id → Company(company_id) 10 10 … … 15 15 *Reference: company_id → Company(company_id) 16 16 17 - Invoice(invoice_id, invoice_no, invoice_issue_date, invoice_due_date, invoice_notes, invoice_status, company_id, client_id, created_at, updated_at)17 - Invoice(invoice_id, invoice_no, invoice_issue_date, invoice_due_date, invoice_notes, invoice_status, invoice_currency, invoice_taxes, invoice_quantity_type, invoice_discount, invoice_month, invoice_pdf_ref, company_id, client_id, created_at, updated_at) 18 18 *References: 19 19 company_id → Company(company_id)