I want to add indexes to some columns in the create table. Is there a way to add them to the CREATE TABLE definition, or do I need to add them after that with another query?
CREATE INDEX reply_user_id ON reply USING btree (user_id);
postgresql database-schema
Xeoncross Jun 04 2018-11-11T00: 00Z
source share