mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
254 B
MySQL
10 lines
254 B
MySQL
2 years ago
|
-- inbox
|
||
|
CREATE TABLE `inbox` (
|
||
|
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||
|
`created_ts` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
|
`sender_id` INT NOT NULL,
|
||
|
`receiver_id` INT NOT NULL,
|
||
|
`status` TEXT NOT NULL,
|
||
|
`message` TEXT NOT NULL
|
||
|
);
|