notification #282
@@ -135,3 +135,13 @@ CREATE TABLE IF NOT EXISTS "boat_damage" (
 | 
			
		||||
	"verified_at" datetime,
 | 
			
		||||
	"lock_boat" boolean not null default false -- if true: noone can use the boat 
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
CREATE TABLE IF NOT EXISTS "notification" (
 | 
			
		||||
	"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
 | 
			
		||||
	"user_id" INTEGER NOT NULL REFERENCES user(id),
 | 
			
		||||
	"message" TEXT NOT NULL,
 | 
			
		||||
	"read_at" DATETIME,
 | 
			
		||||
	"created_at" DATETIME DEFAULT CURRENT_TIMESTAMP,
 | 
			
		||||
	"category" TEXT NOT NULL,
 | 
			
		||||
	"link" TEXT
 | 
			
		||||
);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user