drizzle-orm icon indicating copy to clipboard operation
drizzle-orm copied to clipboard

[FEATURE]: Inline index definition

Open schurhammer opened this issue 2 years ago • 0 comments

Describe want to want

It would be nice if you could define indexes inline, similar to the primaryKey method. Example

export const users = pgTable('users', {
	id: serial('id').primaryKey(),
	username: text('username').notNull().uniqueIndex()
});

schurhammer avatar May 17 '23 22:05 schurhammer