teams: editor added as admin for created teams.

This commit is contained in:
Leonard Gram
2019-03-19 13:57:22 +01:00
parent 22e098b830
commit af4994ba16
5 changed files with 37 additions and 17 deletions
@@ -54,4 +54,10 @@ func addTeamMigrations(mg *Migrator) {
mg.AddMigration("Add column external to team_member table", NewAddColumnMigration(teamMemberV1, &Column{
Name: "external", Type: DB_Bool, Nullable: true,
}))
mg.AddMigration("Add column permission to team_member table", NewAddColumnMigration(teamMemberV1, &Column{
Name: "permission",
Type: DB_BigInt,
Nullable: true,
}))
}