Rename orm module to om
This commit is contained in:
parent
62240723ca
commit
2bd71ff087
7 changed files with 11 additions and 15 deletions
|
@ -2,7 +2,7 @@ import pytest
|
|||
from redis import Redis
|
||||
|
||||
from redis_developer.connections import get_redis_connection
|
||||
from redis_developer.orm.migrations.migrator import Migrator
|
||||
from redis_developer.model.migrations.migrator import Migrator
|
||||
|
||||
|
||||
@pytest.fixture(scope="module", autouse=True)
|
||||
|
|
|
@ -8,11 +8,11 @@ import pytest
|
|||
import redis
|
||||
from pydantic import ValidationError
|
||||
|
||||
from redis_developer.orm import (
|
||||
from redis_developer.model import (
|
||||
HashModel,
|
||||
Field,
|
||||
)
|
||||
from redis_developer.orm.model import RedisModelError, QueryNotSupportedError, NotFoundError
|
||||
from redis_developer.model.model import RedisModelError, QueryNotSupportedError, NotFoundError
|
||||
|
||||
r = redis.Redis()
|
||||
today = datetime.date.today()
|
||||
|
|
|
@ -8,12 +8,13 @@ import pytest
|
|||
import redis
|
||||
from pydantic import ValidationError
|
||||
|
||||
from redis_developer.orm import (
|
||||
from redis_developer.model import (
|
||||
EmbeddedJsonModel,
|
||||
JsonModel,
|
||||
Field,
|
||||
)
|
||||
from redis_developer.orm.migrations.migrator import Migrator
|
||||
from redis_developer.orm.model import QueryNotSupportedError, NotFoundError, RedisModelError
|
||||
from redis_developer.model.migrations.migrator import Migrator
|
||||
from redis_developer.model.model import QueryNotSupportedError, NotFoundError, RedisModelError
|
||||
|
||||
r = redis.Redis()
|
||||
today = datetime.date.today()
|
||||
|
@ -24,11 +25,6 @@ class BaseJsonModel(JsonModel, abc.ABC):
|
|||
global_key_prefix = "redis-developer"
|
||||
|
||||
|
||||
class EmbeddedJsonModel(BaseJsonModel, abc.ABC):
|
||||
class Meta:
|
||||
embedded = True
|
||||
|
||||
|
||||
class Note(EmbeddedJsonModel):
|
||||
# TODO: This was going to be a full-text search example, but
|
||||
# we can't index embedded documents for full-text search in
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue