chai icon indicating copy to clipboard operation
chai copied to clipboard

Add support for descending primary keys

Open asdine opened this issue 2 years ago • 0 comments

-- as a field constraint
CREATE TABLE foo(
  a INT PRIMARY KEY DESC,
  b INT,
  c INT
)

-- as a table constraint
CREATE TABLE foo(
  a INT,
  b INT,
  c INT,

  PRIMARY KEY(a ASC, b DESC)
)

asdine avatar Jul 02 '22 14:07 asdine