mirror of
https://github.com/Automattic/harper.git
synced 2025-12-23 08:48:15 +00:00
6 lines
204 B
SQL
6 lines
204 B
SQL
CREATE TABLE `uninstall_feedback` (
|
|
`id` int AUTO_INCREMENT NOT NULL,
|
|
`feedback` text NOT NULL,
|
|
`timestamp` timestamp NOT NULL DEFAULT (now()),
|
|
CONSTRAINT `uninstall_feedback_id` PRIMARY KEY(`id`)
|
|
);
|