6 lines
143 B
MySQL
6 lines
143 B
MySQL
|
CREATE TABLE itest_scratch (
|
||
|
id SERIAL PRIMARY KEY,
|
||
|
content TEXT,
|
||
|
some_int INTEGER,
|
||
|
update_time TIMESTAMP DEFAULT current_timestamp
|
||
|
)
|