mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-06 12:48:20 +00:00
10 lines
233 B
SQL
10 lines
233 B
SQL
CREATE TABLE wasm_contracts
|
|
(
|
|
id integer primary key,
|
|
contract_name text not null,
|
|
version text not null,
|
|
date_added text not null,
|
|
content text not null,
|
|
CONSTRAINT name_version_unique UNIQUE (contract_name, version)
|
|
);
|