mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Revert "feat(db): add an index for SSHPubKeys.PubKey (#2)"
This reverts commit 6c7e274968
.
Once again, this does actually cause issues with foreign keys.
Removing it for now and will revisit this.
This commit is contained in:
parent
829a8b4b81
commit
6f7ac33166
3 changed files with 0 additions and 60 deletions
|
@ -1,23 +0,0 @@
|
|||
import pytest
|
||||
|
||||
from sqlalchemy import inspect
|
||||
|
||||
from aurweb.db import get_engine
|
||||
from aurweb.models.ssh_pub_key import SSHPubKey
|
||||
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
def setup(db_test):
|
||||
return
|
||||
|
||||
|
||||
def test_sshpubkeys_pubkey_index():
|
||||
insp = inspect(get_engine())
|
||||
indexes = insp.get_indexes(SSHPubKey.__tablename__)
|
||||
|
||||
found_pk = False
|
||||
for idx in indexes:
|
||||
if idx.get("name") == "SSHPubKeysPubKey":
|
||||
assert idx.get("column_names") == ["PubKey"]
|
||||
found_pk = True
|
||||
assert found_pk
|
Loading…
Add table
Add a link
Reference in a new issue