6 lines
137 B
SQL
6 lines
137 B
SQL
create table configuration (
|
|
id bigint not null primary key,
|
|
propertyName varchar not null unique,
|
|
value varchar not null
|
|
);
|