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

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
);