Versio 1, ensimmäinen committi!

This commit is contained in:
2026-04-08 19:34:00 +03:00
commit 7eddb935dc
42 changed files with 2699 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
Manifest-Version: 1.0
Main-Class: fi.lpam.Main
Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

+39
View File
@@ -0,0 +1,39 @@
create table if not exists asiakkaat (
id INTEGER PRIMARY KEY,
nimi varchar(255) not null,
osoite varchar(255) not null,
maanantaiKpl int not null,
tiistaiKpl int not null,
keskiviikkoKpl int not null,
torstaiKpl int not null,
perjantaiKpl int not null,
salaatit int not null,
pääruoat int not null,
jälkiruoat int not null,
erityisruokavalio varchar(255),
avainTieto varchar(255),
lisätiedot text
);
create table if not exists kierrokset (
id INTEGER PRIMARY KEY,
kierrosNumero int not null,
asiakkaat text not null
);
create table if not exists kuljetukset (
id INTEGER PRIMARY KEY,
asiakasID int not null,
nimi varchar(255) not null,
kuljetusPäivämäärä DATE not null,
kuljetusKierros int not null,
salaatit int not null,
pääruoat int not null,
jälkiruoat int not null,
ruokarajoite varchar(255),
osoite varchar(255),
avainTieto varchar(255),
lisätieto varchar(255)
);
create index if not exists idx_kuljetuspvm on kuljetukset(kuljetusPäivämäärä);