···1111 actor_did TEXT NOT NULL,
1212 subject_uri TEXT NOT NULL,
1313 state TEXT NOT NULL DEFAULT 'unread' CHECK(state IN ('unread', 'read')),
1414- type TEXT NOT NULL CHECK(type IN ('follow', 'reaction', 'comment')),
1414+ type TEXT NOT NULL CHECK(type IN ('follow', 'reaction', 'comment', 'reply')),
1515 created_at TEXT NOT NULL DEFAULT (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
1616 FOREIGN KEY (recipient_did) REFERENCES profiles(did) ON DELETE CASCADE,
1717 FOREIGN KEY (actor_did) REFERENCES profiles(did) ON DELETE CASCADE