SQLite format 3@ .c GatableresponseresponseCREATE TABLE response ( id INTEGER PRIMARY KEY, content TEXT NOT NULL, request_id INTEGER NOT NULL, FOREIGN KEY(request_id) REFERENCES request(id) ON DELETE CASCADE )ctablerequestrequestCREATE TABLE request ( id INTEGER PRIMARY KEY, content TEXT NOT NULL )