mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 04:47:18 +08:00
310a6245fa
Tests look reasonably fine.
6 lines
105 B
SQL
6 lines
105 B
SQL
DROP TABLE IF EXISTS blob_sample;
|
|
CREATE TABLE blob_sample (
|
|
id bigserial PRIMARY KEY,
|
|
data bytea
|
|
);
|