diff options
author | Nils Domrose <[email protected]> | 2019-05-26 23:02:41 +0200 |
---|---|---|
committer | Nils Domrose <[email protected]> | 2019-05-26 23:03:05 +0200 |
commit | ff759397f6742781a722dab029d695c4bbcf794a (patch) | |
tree | 525c5ef8fd704e8fb95b423369bd5bfcc59cc564 /migrations/mysql/2018-09-10-111213_add_invites/up.sql | |
parent | badd22ac3d1b6c364c7be59e64ec0c48f2b960dd (diff) | |
download | vaultwarden-ff759397f6742781a722dab029d695c4bbcf794a.tar.gz vaultwarden-ff759397f6742781a722dab029d695c4bbcf794a.zip |
initial mysql support
Diffstat (limited to 'migrations/mysql/2018-09-10-111213_add_invites/up.sql')
-rw-r--r-- | migrations/mysql/2018-09-10-111213_add_invites/up.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/migrations/mysql/2018-09-10-111213_add_invites/up.sql b/migrations/mysql/2018-09-10-111213_add_invites/up.sql new file mode 100644 index 00000000..4245aa82 --- /dev/null +++ b/migrations/mysql/2018-09-10-111213_add_invites/up.sql @@ -0,0 +1,3 @@ +CREATE TABLE invitations ( + email VARCHAR(255) NOT NULL PRIMARY KEY +); |