Skip to content

Commit

Permalink
Increase size of namespace column
Browse files Browse the repository at this point in the history
  • Loading branch information
niwsa committed Apr 29, 2024
1 parent 12d6742 commit 2f8ae15
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion npm/src/db/planetscale/entity/JacksonStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class JacksonStore {
@Index('_jackson_store_namespace')
@Column({
type: 'varchar',
length: 64,
length: 256,
nullable: true,
})
namespace?: string;
Expand Down
2 changes: 1 addition & 1 deletion npm/src/db/sql/entity/JacksonStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class JacksonStore {
@Index('_jackson_store_namespace')
@Column({
type: 'varchar',
length: 64,
length: 256,
nullable: true,
})
namespace?: string;
Expand Down
2 changes: 1 addition & 1 deletion npm/src/db/sql/mariadb/entity/JacksonStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class JacksonStore {
@Index('_jackson_store_namespace')
@Column({
type: 'varchar',
length: 64,
length: 256,
nullable: true,
})
namespace?: string;
Expand Down
2 changes: 1 addition & 1 deletion npm/src/db/sql/mssql/entity/JacksonStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class JacksonStore {
@Index('_jackson_store_namespace')
@Column({
type: 'varchar',
length: 64,
length: 256,
nullable: true,
})
namespace?: string;
Expand Down

0 comments on commit 2f8ae15

Please sign in to comment.