create table f_stock_orders
(
    id   int(7) auto_increment
        primary key,
    name varchar(50) not null
)
    charset = utf8mb3;
