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
Pelton currently doesn't support the creation of Primary keys involving multiple table columns. This can be necessary in some tables as some combination of columns might be required for the unique identification of entries
Here is an example of a table where this is necessary. Running this create table with the current version of Pelton errors: CREATE TABLE questions (lec int, q int, question text, PRIMARY KEY (lec, q));
The text was updated successfully, but these errors were encountered:
Pelton currently doesn't support the creation of Primary keys involving multiple table columns. This can be necessary in some tables as some combination of columns might be required for the unique identification of entries
Here is an example of a table where this is necessary. Running this create table with the current version of Pelton errors:
CREATE TABLE questions (lec int, q int, question text, PRIMARY KEY (lec, q));
The text was updated successfully, but these errors were encountered: