You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it do not support primary key like:
create table test( channel varchar(255) not null, id varchar(255) not null,
primary key c_id (channel, id)
)
it only support like:
create table test( channel varchar(255) not null, id varchar(255) not null,
primary key (channel, id)
)
The text was updated successfully, but these errors were encountered:
it do not support primary key like:
create table
test
(channel
varchar(255) not null,id
varchar(255) not null,primary key
c_id
(channel, id))
it only support like:
create table
test
(channel
varchar(255) not null,id
varchar(255) not null,primary key (channel, id)
)
The text was updated successfully, but these errors were encountered: