ulib/3party/sqlpp11/tests/postgresql/usage/BlobSample.sql

6 lines
105 B
MySQL
Raw Normal View History

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