Support extension data

This commit is contained in:
WQY\qiong
2023-05-08 20:46:10 +08:00
parent 22f548beb9
commit 132eb036fb
8 changed files with 167 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
create table extension_data
(
key text primary key
, value text not null
);

View File

@@ -0,0 +1 @@
drop table if exists extension_data;