-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow admins to send service notifications (#38)
* Allow admins to send service notifications Closes #33 * Fix test
- Loading branch information
1 parent
8c5bd7e
commit 4c82da7
Showing
4 changed files
with
147 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package migrations | ||
|
||
import ( | ||
"database/sql" | ||
"log" | ||
) | ||
|
||
func v4(db *sql.Tx) { | ||
v4UserAdmin(db) | ||
} | ||
|
||
func v4UserAdmin(db *sql.Tx) { | ||
sqlStatement := ` | ||
ALTER TABLE "auth::user" | ||
ADD "isAdmin" BOOLEAN DEFAULT FALSE NOT NULL; | ||
` | ||
_, err := db.Exec(sqlStatement) | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
} |