export const preferenceTable = createTable(
'preference',
{
userId: uuidv7('group_id').notNull(),
defaultGroupId: uuidv7('default_group_id'),
},
({ userId, defaultGroupId }) => [
{
pk: primaryKey({ columns: [userId, defaultGroupId] }),
},
],
);
export const preferenceTable = createTable(
'preference',
{
userId: uuidv7('group_id').notNull(),
defaultGroupId: uuidv7('default_group_id'),
},
({ userId, defaultGroupId }) => [
{
pk: primaryKey({ columns: [userId, defaultGroupId] }),
},
],
);