diff options
author | Frederick Muriuki Muriithi | 2023-03-13 06:25:13 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-03-13 06:25:13 +0300 |
commit | 3dee24dc1e05893b49ace052ab61899e49a03bb7 (patch) | |
tree | a53e02f1c89288ed9808ff058fe9b258d6c39c56 /migrations/auth/20221103_02_sGrIs-create-user-credentials-table.py | |
parent | 08ab26292b9ed2da9e91a683f38c6e1f532af4ee (diff) | |
download | genenetwork3-3dee24dc1e05893b49ace052ab61899e49a03bb7.tar.gz |
Add 'ON UPDATE/DELETE' clauses to foreign keys.
Diffstat (limited to 'migrations/auth/20221103_02_sGrIs-create-user-credentials-table.py')
-rw-r--r-- | migrations/auth/20221103_02_sGrIs-create-user-credentials-table.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/migrations/auth/20221103_02_sGrIs-create-user-credentials-table.py b/migrations/auth/20221103_02_sGrIs-create-user-credentials-table.py index 3f72f3e..48bd663 100644 --- a/migrations/auth/20221103_02_sGrIs-create-user-credentials-table.py +++ b/migrations/auth/20221103_02_sGrIs-create-user-credentials-table.py @@ -13,6 +13,7 @@ steps = [ user_id TEXT PRIMARY KEY, password TEXT NOT NULL, FOREIGN KEY(user_id) REFERENCES users(user_id) + ON UPDATE CASCADE ON DELETE RESTRICT ) WITHOUT ROWID """, "DROP TABLE IF EXISTS user_credentials") |