Skip to main content

Database models for Plain.

Project description

plain.models

Model your data and store it in a database.

# app/users/models.py
from plain import models
from plain.passwords.models import PasswordField


class User(models.Model):
    email = models.EmailField(unique=True)
    password = PasswordField()
    is_admin = models.BooleanField(default=False)
    created_at = models.DateTimeField(auto_now_add=True)

    def __str__(self):
        return self.email

Create, update, and delete instances of your models:

from .models import User


# Create a new user
user = User.objects.create(
    email="test@example.com",
    password="password",
)

# Update a user
user.email = "new@example.com"
user.save()

# Delete a user
user.delete()

# Query for users
admin_users = User.objects.filter(is_admin=True)

Installation

# app/settings.py
INSTALLED_PACKAGES = [
    ...
    "plain.models",
]

To connect to a database, you can provide a DATABASE_URL environment variable.

DATABASE_URL=postgresql://user:password@localhost:5432/dbname

Or you can manually define the DATABASES setting.

# app/settings.py
DATABASES = {
    "default": {
        "ENGINE": "plain.models.backends.postgresql",
        "NAME": "dbname",
        "USER": "user",
        "PASSWORD": "password",
        "HOST": "localhost",
        "PORT": "5432",
    }
}

Multiple backends are supported, including Postgres, MySQL, and SQLite.

Querying

Migrations

Migration docs

Fields

Field docs

Validation

Indexes and constraints

Managers

Forms

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

plain_models-0.12.1.tar.gz (391.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

plain_models-0.12.1-py3-none-any.whl (439.2 kB view details)

Uploaded Python 3

File details

Details for the file plain_models-0.12.1.tar.gz.

File metadata

  • Download URL: plain_models-0.12.1.tar.gz
  • Upload date:
  • Size: 391.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.5.30

File hashes

Hashes for plain_models-0.12.1.tar.gz
Algorithm Hash digest
SHA256 5e146a2829cee712c1a4329ae4a332a6b19026137832cc5b5e78880e659f185c
MD5 3bca2e4f368ccc6a7ff83d43cf2c46b4
BLAKE2b-256 9f7882162d957c8cc82cf30fcdfb61d449cfe0bbac67044931ee8b242f28bdc1

See more details on using hashes here.

File details

Details for the file plain_models-0.12.1-py3-none-any.whl.

File metadata

File hashes

Hashes for plain_models-0.12.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1a5f93162d54de10cea65fbe2a649625de9359d8ab7eb0be03ead6cc3f16eecf
MD5 146369a52c27d81557d86e023c6a3c43
BLAKE2b-256 ce0e7a43135a742ccb3a9dafc215213a16ea7d55be40bccf13295858ed19d079

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page