mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +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
|
||
|
);
|