lotus/lib/harmony/harmonydb/sql/20230706-itest_scratch.sql

7 lines
167 B
MySQL
Raw Normal View History

2023-07-14 23:05:49 +00:00
CREATE TABLE itest_scratch (
id SERIAL PRIMARY KEY,
content TEXT,
some_int INTEGER,
2023-08-14 16:40:12 +00:00
second_int INTEGER,
2023-07-14 23:05:49 +00:00
update_time TIMESTAMP DEFAULT current_timestamp
)