new column for team_member table

This commit is contained in:
Marcus Efraimsson
2018-09-14 17:27:36 +02:00
parent 270b736302
commit 9a6446c2b5
5 changed files with 57 additions and 23 deletions
@@ -51,4 +51,7 @@ func addTeamMigrations(mg *Migrator) {
Name: "email", Type: DB_NVarchar, Nullable: true, Length: 190,
}))
mg.AddMigration("Add column external to team_member table", NewAddColumnMigration(teamMemberV1, &Column{
Name: "external", Type: DB_Bool, Nullable: true,
}))
}