Skip to content

Commit

Permalink
lunchtime code review
Browse files Browse the repository at this point in the history
  • Loading branch information
usrrname committed Feb 22, 2025
1 parent 04c5b61 commit b1e8360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/migrations/20251740066033_user_info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Knex } from 'knex';
export async function up(knex: Knex): Promise<void> {

await knex.schema.createTable('user_info', table => {
table.integer('principal_id').notNullable().primary().references('principals.id')
table.integer('principal_id').notNullable().primary().references('principals.id');
table.string('name', 200).nullable().comment('End-User\'s full name in displayable form including all name parts, possibly including titles and suffixes, ordered according to the End-User\'s locale and preferences.');
table.string('middle_name').nullable().comment('Middle name(s) of the End-User.');
table.string('given_name', 30).nullable().comment('Given name(s) or first name(s) of the End-User.');
Expand Down

0 comments on commit b1e8360

Please sign in to comment.