We're looking to add a column to the table user called admin (boolean) in an existing database.
migrations
| #!/bin/bash | |
| # Config | |
| EFI_PART=/dev/sda1 | |
| LUKS_PART=/dev/sda2 | |
| EFI_MNT=/root/boot | |
| # Utils | |
| rbtohex() { ( od -An -vtx1 | tr -d ' \n' ) } | |
| hextorb() { ( tr '[:lower:]' '[:upper:]' | sed -e 's/\([0-9A-F]\{2\}\)/\\\\\\x\1/gI'| xargs printf ) } |
| #!/bin/sh | |
| HOSTED_ZONE="Route53 zone ID" | |
| payload() { | |
| local action=$1 | |
| cat <<EOF | |
| { | |
| "Changes": [ | |
| { "Action": "${action}", |
| ;; PRETTIFY SYMBOLS (with Pragmata Pro) | |
| (defun setup-pragmata-ligatures () | |
| (setq prettify-symbols-alist | |
| (append prettify-symbols-alist | |
| '(("!!" . ?) | |
| ("!=" . ?) | |
| ("!==" . ?) | |
| ("!≡" . ?) | |
| ("!≡≡" . ?) | |
| ("!>" . ?) |
| set noautofocus | |
| let scrollstep=230 | |
| set smoothscroll | |
| let scrollduration= 200 | |
| let barposition = "bottom" | |
| let locale = "en" | |
| let hintcharacters = "hjklasdfgyuiopqertnmzxcvb" | |
| let mapleader = "," | |
| let blacklists = ["https://mail.google.com/*","*://mail.google.com/*","@https://mail.google.com/mail/*"] |
| #!/bin/dash | |
| [ "$TRACE" ] && set -x | |
| DRIVER="alsa" | |
| XWAX_OPTS="-k -q 40 -g 800x480 --no-decor" | |
| LIBRARY_FOLDER="/media" | |
| onexit() { | |
| echo "SIGINT received" | |
| echo "sending SIGTERM to all processes" |
| ### Keybase proof | |
| I hereby claim: | |
| * I am aliem on github. | |
| * I am lor (https://keybase.io/lor) on keybase. | |
| * I have a public key ASDZmW2aFDCI9Kj35QZzurwDsNHqFlqD5_UVGXy4cveC3Ao | |
| To claim this, I am signing this object: |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| # Creates a new monorepo by fusing multiple repositories | |
| # Child repositories that are going to be fused | |
| CHILDREN="bridge-apn bridge-broker-http-gateway bridge-node-gcm bridge-log-elasticsearch bridge-secretary-client bridge-worker-client bridge-legacy-crypto bridge-config hive-worker bridge-support bridge-start bridge-secretary bridge-net bridge-log-rollbar bridge-log bridge-id bridge-hive bridge-broker bridge-bakward" | |
| CHILDREN_FOLDER="packages" | |
| # Name of the created monorepo | |
| MONOREPO="monorepo" |