Add VariableManager, RpcClient classes, and cache enhancements
This commit is contained in:
parent
38092a639e
commit
e55f4d57f9
27 changed files with 606 additions and 56 deletions
11
src/Socialbox/Classes/Resources/database/variables.sql
Normal file
11
src/Socialbox/Classes/Resources/database/variables.sql
Normal file
|
@ -0,0 +1,11 @@
|
|||
create table variables
|
||||
(
|
||||
name varchar(255) not null comment 'The name of the variable'
|
||||
primary key comment 'The unique index for the variable name',
|
||||
value text null comment 'The value of the variable',
|
||||
`read_only` tinyint(1) default 0 not null comment 'Boolean indicator if the variable is read only',
|
||||
created timestamp default current_timestamp() not null comment 'The Timestamp for when this record was created',
|
||||
updated timestamp null comment 'The Timestamp for when this record was last updated',
|
||||
constraint variables_name_uindex
|
||||
unique (name) comment 'The unique index for the variable name'
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue