Init mobility DB
This commit is contained in:
@@ -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)
|
||||
);
|
||||
@@ -1,6 +1,6 @@
|
||||
create table promotions (
|
||||
id integer primary key autoincrement,
|
||||
name text,
|
||||
name text,
|
||||
endyear integer,
|
||||
current integer
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user