CREATE TABLE "kullanici" ( "id" int ); CREATE TABLE "mesaj" ( "id" int, "mesaj_id" int FOREIGN KEY("mesaj_id") REFERENCES "mesaj" ("id"), "gonderen_id" int PRIMARY KEY FOREIGN KEY("gonderen_id") REFERENCES "kullanici" ("id"), "alan_id" int FOREIGN KEY("alan_id") REFERENCES "kullanici" ("id"), "mesaj" longtext, "gonderilme_zamanı" varchar(255), "okunma_zamanı" datetime );