Skip to content

Commit

Permalink
feat(db-migrations): Rename columns and add NOT NULL in table lti_e…
Browse files Browse the repository at this point in the history
…ntity
  • Loading branch information
LarsTheGlidingSquirrel committed Jul 11, 2024
1 parent 1248f49 commit f98baa2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export async function up(db: Database) {
id BIGINT NOT NULL AUTO_INCREMENT,
resource_link_id VARCHAR(255),
custom_claim_id VARCHAR(255) NOT NULL,
content LONGTEXT,
parsed_jwt_content TEXT,
content LONGTEXT NOT NULL,
id_token_on_creation TEXT NOT NULL,
PRIMARY KEY (id)
)
`)
Expand Down

0 comments on commit f98baa2

Please sign in to comment.