diff --git a/Docs/DB/schema.db b/Docs/DB/schema.db index 729afc8..acc9129 100644 --- a/Docs/DB/schema.db +++ b/Docs/DB/schema.db @@ -1,6 +1,5 @@ https://dbdiagram.io/d/ - Table "event" { "id" bigint(20) [pk, not null, increment] "name" varchar(255) [default: NULL] @@ -13,6 +12,7 @@ Table "event" { Table "user" { "id" bigint(20) [pk, not null, increment] + "login" varchar(255) [default: NULL] "forename" varchar(255) [default: NULL] "name" varchar(255) [default: NULL] "is_admin" bit(1) [not null] @@ -33,4 +33,5 @@ Indexes { } Ref:"event"."id" < "user_event"."event_id" -Ref:"user"."id" < "user_event"."user_id" \ No newline at end of file + +Ref:"user"."id" < "user_event"."user_id" diff --git a/Docs/DB/schema.png b/Docs/DB/schema.png index a2b36c0..608697d 100644 Binary files a/Docs/DB/schema.png and b/Docs/DB/schema.png differ