jakebathman / mysql-syntax

VS Code syntax support for MySQL
11 stars 5 forks source link

"unique key" token is not highlighted #11

Open Orionsg opened 6 years ago

Orionsg commented 6 years ago

Example:

create table country
    (   id              smallint unsigned   not null    primary key     auto_increment
    ,   name            varchar(100)        not null    
    ,   iso_2           varchar(2)          not null
    ,   iso_3           varchar(3)          not null
    ,   unique key      ux_ctry_iso_2       (iso_2)
    ,   unique key      ux_ctry_iso_3       (iso_3)
    ,   unique key      ux_ctry_name        (name)
    );