0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00
sqlpp11/tests/postgresql/usage/BlobSample.sql
Roland Bock 310a6245fa Added blob support for postgresql
Tests look reasonably fine.
2021-11-14 13:14:34 +01:00

6 lines
105 B
SQL

DROP TABLE IF EXISTS blob_sample;
CREATE TABLE blob_sample (
id bigserial PRIMARY KEY,
data bytea
);