Changes between Version 10 and Version 11 of UseCaseModel/UseCase0


Ignore:
Timestamp:
01/20/24 15:50:25 (5 months ago)
Author:
191572
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCaseModel/UseCase0

    v10 v11  
    1717Code highlighting:
    1818  {{{#!sql
     19
     20-- за сите корисници
     21
    1922  insert into Korisnik(Email, username, Pword) values
    2023('luka.cheshlarov@finki.com', 'Lukamaster', 'luka1234')
    2124
     25-- ако тип корисник е потрошувач
     26
    2227insert into Potrosuvac(korisnik_id, Address, br_telefon) values
    23 (1, 'Ul. Prashka Br 32a', '070321643')
     28(1, 'Ul. Prashka Br 32a', '070321643');
     29
     30-- ако тип корисник е возач
     31
     32insert into Vozac(korisnik_id, vozilo_id) values
     33(12, 2);
     34
     35-- ако тип корисник е админ
     36
     37insert into Administrator(korisnik_id) values
     38(23);
     39
    2440
    2541  }}}