Init mobility DB

This commit is contained in:
Clayzxr
2025-01-22 15:09:22 +01:00
parent 6456529b7f
commit 4abf540558
8 changed files with 286 additions and 23 deletions
+11
View File
@@ -0,0 +1,11 @@
CREATE TABLE mobility (
id integer primary key autoincrement,
studentId text,
startDate date,
endDate date,
weeksCount integer,
destinationCountry text,
destinationName text,
mobilityStatus text default 'N/A',
foreign key (studentId) references students(userId)
);