mirror of
https://github.com/rbock/sqlpp11.git
synced 2025-01-13 17:34:46 +08:00
6 lines
105 B
MySQL
6 lines
105 B
MySQL
|
DROP TABLE IF EXISTS blob_sample;
|
||
|
CREATE TABLE blob_sample (
|
||
|
id bigserial PRIMARY KEY,
|
||
|
data bytea
|
||
|
);
|