6 lines
80 B
SQL
6 lines
80 B
SQL
create table extension_data
|
|
(
|
|
key text primary key
|
|
, value text not null
|
|
);
|