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
CREATE TYPE PRODUCT AS ENUM ('phone', 'laptop', 'mouse');
CREATE TABLE products (
id BIGSERIAL NOT NULL PRIMARY KEY,
title VARCHAR(20) NOT NULL,
type PRODUCT NOT NULL
);
For example if a column has a type different from standard(string, number, ...) we must be able to add that specific info.
For example for this issue solution could be:
The text was updated successfully, but these errors were encountered: