Skip to content

Commit

Permalink
add how to volunteers can help
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasgehl3n committed Nov 19, 2023
1 parent f5387ff commit e40ec17
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/database/models/Institution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class Institution extends Model {
public site?: string;
public email?: string;
public image?: string | null;
public howVolunteersCanHelp?: string | null;
public receive_volunteers!: string;
public adress!: Address
public idAddress!: number
Expand Down Expand Up @@ -60,6 +61,10 @@ Institution.init(
allowNull: false,
defaultValue: true,
},
howVolunteersCanHelp: {
type: DataTypes.STRING(5000),
allowNull: true,
},
idUserCreator: {
type: DataTypes.INTEGER,
allowNull: true,
Expand Down

0 comments on commit e40ec17

Please sign in to comment.