drizzle-orm
drizzle-orm copied to clipboard
[FEATURE]: Inline index definition
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()
});