sermon/outchat-ddl.sql

8 lines
120 B
MySQL
Raw Normal View History

2018-10-17 13:22:43 +02:00
CREATE TABLE `messages` (
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
`name` TEXT,
`text` TEXT,
`timestamp` INTEGER
);