This repository has been archived on 2025-07-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bolderjara-serviss/backend/attendance.db

10 lines
16 KiB
Plaintext
Raw Normal View History

2025-06-30 10:14:26 +03:00
SQLite format 3@ .<18> 3<0F>.3<00>x!!<01>;tableAttendanceAttendanceCREATE TABLE Attendance (
id INTEGER PRIMARY KEY AUTOINCREMENT,
employee_id INTEGER NOT NULL,
date TEXT NOT NULL,
hours_worked REAL NOT NULL,
FOREIGN KEY (employee_id) REFERENCES Employees (id)
)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)~<01>KtableEmployeesEmployeesCREATE TABLE Employees (
id INTEGER PRIMARY KEY AUTOINCREMENT,
username TEXT NOT NULL
) <0F><0F><0F><0F><0F>dacejurisligajan