I really need that. I've tried to define it in my model:
vs_id = Column(Integer, primary_key=True, unique=False)
But it didn't work - database schema has such row:
ALTER TABLE ONLY my_table__ ADD CONSTRAINT my_table___pkey PRIMARY KEY (vs_id);
How to solve this? Thanks in advance!