annotate Odbc/Plugins/PrepareStorage.sql @ 545:de157cf213f6 pg-transactions

closing branch pg-transactions
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Sep 2024 12:48:22 +0200
parents b5fb8b77ce4d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
329
b5fb8b77ce4d initial commit of ODBC framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 CREATE TABLE StorageArea(
b5fb8b77ce4d initial commit of ODBC framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2 uuid VARCHAR(64) NOT NULL PRIMARY KEY,
b5fb8b77ce4d initial commit of ODBC framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
3 content ${BINARY} NOT NULL,
b5fb8b77ce4d initial commit of ODBC framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
4 type INTEGER NOT NULL);