create table f_settings
(
    setting_id smallint(3) auto_increment
        primary key,
    setting_name text null,
    setting_value text null,
    setting_code text null,
    setting_nr int(5) not null,
    setting_type int(5) not null,
    setting_unused int default 0 not null,
    create_date timestamp default current_timestamp() not null,
    update_date timestamp default current_timestamp() not null on update current_timestamp()
)
    charset=utf8mb3;