fridgemagnets/server/schema.sql

8 lines
126 B
MySQL
Raw Normal View History

BEGIN;
CREATE TABLE tweets (
address CHAR(42) NOT NULL,
tweet TEXT NOT NULL,
entered DATETIME NOT NULL
);
COMMIT;