item (
id serial primary key,
category_id int REFERENCES category (id) NOT NULL,
name varchar (255) NOT NULL,
price bigint,
processor_characteristic_id int REFERENCES processor_characteristic(id),
videocart_characteristic_id int REFERENCES videocart_characteristic(id)
--так же другие таблицы с окончанием _characteristic, истиной характеристикой товара будет считатся не NULL колонка
)