Skip to content

Commit

Permalink
fix: make data_source.description a TEXT col instead of varchar(255) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
fontanierh authored Nov 2, 2023
1 parent bd30a6d commit 7969432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front/lib/models/data_source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ DataSource.init(
allowNull: false,
},
description: {
type: DataTypes.STRING,
type: DataTypes.TEXT,
},
visibility: {
type: DataTypes.STRING,
Expand Down

0 comments on commit 7969432

Please sign in to comment.