fields
Module with classes and constructors for ormar Fields. Base Fields types (like String, Integer etc.) as well as relation Fields (ForeignKey, ManyToMany). Also a definition for custom CHAR based sqlalchemy UUID field
BaseField
Bases: FieldInfo
BaseField serves as a parent class for all basic Fields in ormar. It keeps all common parameters available for all fields as well as set of useful functions.
All values are kept as class variables, ormar Fields are never instantiated. Subclasses pydantic.FieldInfo to keep the fields related to pydantic field types like ConstrainedStr
Source code in ormar\fields\base.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 |
|
construct_constraints()
Converts list of ormar constraints into sqlalchemy ForeignKeys. Has to be done dynamically as sqlalchemy binds ForeignKey to the table. And we need a new ForeignKey for subclasses of current model
Returns:
Type | Description |
---|---|
List[sqlalchemy.schema.ForeignKey]
|
List of sqlalchemy foreign keys - by default one. |
Source code in ormar\fields\base.py
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
|
default_value(use_server=False)
Returns a FieldInfo instance with populated default (static) or default_factory (function). If the field is a autoincrement primary key the default is None. Otherwise field have to has either default, or default_factory populated.
If all default conditions fail None is returned.
Used in converting to pydantic FieldInfo.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
use_server |
bool
|
flag marking if server_default should be treated as default value, default False |
False
|
Returns:
Type | Description |
---|---|
Optional[pydantic.FieldInfo]
|
returns a call to pydantic.Field which is returning a FieldInfo instance |
Source code in ormar\fields\base.py
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
|
evaluate_forward_ref(globalns, localns)
Evaluates the ForwardRef to actual Field based on global and local namespaces
Parameters:
Name | Type | Description | Default |
---|---|---|---|
globalns |
Any
|
global namespace |
required |
localns |
Any
|
local namespace |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in ormar\fields\base.py
357 358 359 360 361 362 363 364 365 366 367 |
|
expand_relationship(value, child, to_register=True)
Function overwritten for relations, in basic field the value is returned as is. For relations the child model is first constructed (if needed), registered in relation and returned. For relation fields the value can be a pk value (Any type of field), dict (from Model) or actual instance/list of a "Model".
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
Any
|
a Model field value, returned untouched for non relation fields. |
required |
child |
Union[Model, NewBaseModel]
|
a child Model to register |
required |
to_register |
bool
|
flag if the relation should be set in RelationshipManager |
True
|
Returns:
Type | Description |
---|---|
Any
|
returns untouched value for normal fields, expands only for relations |
Source code in ormar\fields\base.py
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 |
|
get_alias()
Used to translate Model column names to database column names during db queries.
Returns:
Type | Description |
---|---|
str
|
returns custom database column name if defined by user, otherwise field name in ormar/pydantic |
Source code in ormar\fields\base.py
127 128 129 130 131 132 133 134 135 |
|
get_column(name)
Returns definition of sqlalchemy.Column used in creation of sqlalchemy.Table. Populates name, column type constraints, as well as a number of parameters like primary_key, index, unique, nullable, default and server_default.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the db column - used if alias is not set |
required |
Returns:
Type | Description |
---|---|
sqlalchemy.Column
|
actual definition of the database column as sqlalchemy requires. |
Source code in ormar\fields\base.py
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
|
get_default(use_server=False)
Return default value for a field. If the field is Callable the function is called and actual result is returned. Used to populate default_values for pydantic Model in ormar Model Metaclass.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
use_server |
bool
|
flag marking if server_default should be treated as default value, default False |
False
|
Returns:
Type | Description |
---|---|
Any
|
default value for the field if set, otherwise implicit None |
Source code in ormar\fields\base.py
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
|
get_pydantic_default()
Generates base pydantic.FieldInfo with only default and optionally required to fix pydantic Json field being set to required=False. Used in an ormar Model Metaclass.
Returns:
Type | Description |
---|---|
pydantic.FieldInfo
|
instance of base pydantic.FieldInfo |
Source code in ormar\fields\base.py
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
|
get_related_name()
Returns name to use for reverse relation.
It's either set as related_name
or by default it's owner model. get_name + 's'
Returns:
Type | Description |
---|---|
str
|
name of the related_name or default related name. |
Source code in ormar\fields\base.py
369 370 371 372 373 374 375 376 |
|
has_default(use_server=True)
Checks if the field has default value set.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
use_server |
bool
|
flag marking if server_default should be treated as default value, default False |
True
|
Returns:
Type | Description |
---|---|
bool
|
result of the check if default value is set |
Source code in ormar\fields\base.py
206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
has_unresolved_forward_refs()
Verifies if the filed has any ForwardRefs that require updating before the model can be used.
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\base.py
347 348 349 350 351 352 353 354 355 |
|
is_auto_primary_key()
Checks if field is first a primary key and if it, it's than check if it's set to autoincrement. Autoincrement primary_key is nullable/optional.
Returns:
Type | Description |
---|---|
bool
|
result of the check for primary key and autoincrement |
Source code in ormar\fields\base.py
220 221 222 223 224 225 226 227 228 229 230 231 |
|
is_valid_uni_relation()
Checks if field is a relation definition but only for ForeignKey relation, so excludes ManyToMany fields, as well as virtual ForeignKey (second side of FK relation).
Is used to define if a field is a db ForeignKey column that should be saved/populated when dealing with internal/own Model columns only.
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\base.py
112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
set_self_reference_flag()
Sets self_reference
to True if field to and owner are same model.
Returns:
Type | Description |
---|---|
None
|
None |
Source code in ormar\fields\base.py
335 336 337 338 339 340 341 342 343 344 345 |
|
BigInteger
Bases: Integer
, int
BigInteger field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
640 641 642 643 644 645 646 647 648 649 650 651 |
|
Boolean
Bases: ModelFieldFactory
, int
Boolean field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
398 399 400 401 402 403 404 405 406 407 408 409 |
|
CheckColumns
Bases: CheckConstraint
Subclass of sqlalchemy.CheckConstraint. Used to avoid importing anything from sqlalchemy by user.
Note that some databases do not actively support check constraints such as MySQL.
Source code in ormar\fields\constraints.py
25 26 27 28 29 30 31 |
|
Date
Bases: ModelFieldFactory
, datetime.date
Date field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
455 456 457 458 459 460 461 462 463 464 465 466 |
|
DateTime
Bases: ModelFieldFactory
, datetime.datetime
DateTime field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
433 434 435 436 437 438 439 440 441 442 443 444 |
|
Decimal
Bases: ModelFieldFactory
, decimal.Decimal
Decimal field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
745 746 747 748 749 750 751 752 753 754 755 756 757 758 |
|
validate(**kwargs)
classmethod
Used to validate if all required parameters on a given field type are set.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
all params passed during construction |
{}
|
Source code in ormar\fields\model_fields.py
760 761 762 763 764 765 766 767 768 769 770 771 772 |
|
Enum
Bases: ModelFieldFactory
Enum field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 |
|
Float
Bases: ModelFieldFactory
, float
Float field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
369 370 371 372 373 374 375 376 377 378 379 380 |
|
ForeignKeyField
Bases: BaseField
Actual class returned from ForeignKey function call and stored in model_fields.
Source code in ormar\fields\foreign_key.py
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 |
|
default_source_field_name()
Returns default target model name on through model.
Returns:
Type | Description |
---|---|
str
|
name of the field |
Source code in ormar\fields\foreign_key.py
346 347 348 349 350 351 352 353 |
|
default_target_field_name()
Returns default target model name on through model.
Returns:
Type | Description |
---|---|
str
|
name of the field |
Source code in ormar\fields\foreign_key.py
337 338 339 340 341 342 343 344 |
|
evaluate_forward_ref(globalns, localns)
Evaluates the ForwardRef to actual Field based on global and local namespaces
Parameters:
Name | Type | Description | Default |
---|---|---|---|
globalns |
Any
|
global namespace |
required |
localns |
Any
|
local namespace |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in ormar\fields\foreign_key.py
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
|
expand_relationship(value, child, to_register=True)
For relations the child model is first constructed (if needed), registered in relation and returned. For relation fields the value can be a pk value (Any type of field), dict (from Model) or actual instance/list of a "Model".
Selects the appropriate constructor based on a passed value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
Any
|
a Model field value, returned untouched for non relation fields. |
required |
child |
Union[Model, NewBaseModel]
|
a child Model to register |
required |
to_register |
bool
|
flag if the relation should be set in RelationshipManager |
True
|
Returns:
Type | Description |
---|---|
Optional[Union["Model", List["Model"]]]
|
returns a Model or a list of Models |
Source code in ormar\fields\foreign_key.py
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 |
|
get_related_name()
Returns name to use for reverse relation.
It's either set as related_name
or by default it's owner model. get_name + 's'
Returns:
Type | Description |
---|---|
str
|
name of the related_name or default related name. |
Source code in ormar\fields\foreign_key.py
328 329 330 331 332 333 334 335 |
|
get_relation_name()
Returns name of the relation, which can be a own name or through model names for m2m models
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\foreign_key.py
546 547 548 549 550 551 552 553 554 |
|
get_source_model()
Returns model from which the relation comes -> either owner or through model
Returns:
Type | Description |
---|---|
Type["Model"]
|
source model |
Source code in ormar\fields\foreign_key.py
556 557 558 559 560 561 562 563 |
|
get_source_related_name()
Returns name to use for source relation name.
For FK it's the same, differs for m2m fields.
It's either set as related_name
or by default it's owner model. get_name + 's'
Returns:
Type | Description |
---|---|
str
|
name of the related_name or default related name. |
Source code in ormar\fields\foreign_key.py
318 319 320 321 322 323 324 325 326 |
|
has_unresolved_forward_refs()
Verifies if the filed has any ForwardRefs that require updating before the model can be used.
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\foreign_key.py
500 501 502 503 504 505 506 507 508 |
|
register_relation(model, child)
Registers relation between parent and child in relation manager. Relation manager is kep on each model (different instance).
Used in Metaclass and sometimes some relations are missing (i.e. cloned Models in fastapi might miss one).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model |
Model
|
parent model (with relation definition) |
required |
child |
Model
|
child model |
required |
Source code in ormar\fields\foreign_key.py
485 486 487 488 489 490 491 492 493 494 495 496 497 498 |
|
Integer
Bases: ModelFieldFactory
, int
Integer field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
294 295 296 297 298 299 300 301 302 303 304 305 |
|
JSON
Bases: ModelFieldFactory
, pydantic.Json
JSON field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
512 513 514 515 516 517 518 519 520 521 522 523 |
|
LargeBinary
Bases: ModelFieldFactory
, bytes
LargeBinary field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
579 580 581 582 583 584 585 586 587 588 589 590 |
|
validate(**kwargs)
classmethod
Used to validate if all required parameters on a given field type are set.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
all params passed during construction |
{}
|
Source code in ormar\fields\model_fields.py
592 593 594 595 596 597 598 599 600 601 602 603 |
|
ManyToManyField
Bases: ForeignKeyField
, ormar.QuerySetProtocol
, ormar.RelationProtocol
Actual class returned from ManyToMany function call and stored in model_fields.
Source code in ormar\fields\many_to_many.py
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
|
create_default_through_model()
Creates default empty through model if no additional fields are required.
Source code in ormar\fields\many_to_many.py
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
|
evaluate_forward_ref(globalns, localns)
Evaluates the ForwardRef to actual Field based on global and local namespaces
Parameters:
Name | Type | Description | Default |
---|---|---|---|
globalns |
Any
|
global namespace |
required |
localns |
Any
|
local namespace |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in ormar\fields\many_to_many.py
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
|
get_relation_name()
Returns name of the relation, which can be a own name or through model names for m2m models
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\many_to_many.py
239 240 241 242 243 244 245 246 247 248 249 |
|
get_source_model()
Returns model from which the relation comes -> either owner or through model
Returns:
Type | Description |
---|---|
Type["Model"]
|
source model |
Source code in ormar\fields\many_to_many.py
251 252 253 254 255 256 257 258 |
|
get_source_related_name()
Returns name to use for source relation name.
For FK it's the same, differs for m2m fields.
It's either set as related_name
or by default it's field name.
Returns:
Type | Description |
---|---|
str
|
name of the related_name or default related name. |
Source code in ormar\fields\many_to_many.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
|
has_unresolved_forward_refs()
Verifies if the filed has any ForwardRefs that require updating before the model can be used.
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\many_to_many.py
203 204 205 206 207 208 209 210 211 |
|
ReferentialAction
Bases: Enum
Because the database management system(DBMS) enforces referential constraints, it must ensure data integrity if rows in a referenced table are to be deleted (or updated).
If dependent rows in referencing tables still exist, those references have to be considered.
SQL specifies 5 different referential actions that shall take place in such occurrences.
Source code in ormar\fields\referential_actions.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
|
SmallInteger
Bases: Integer
, int
SmallInteger field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
688 689 690 691 692 693 694 695 696 697 698 699 |
|
String
Bases: ModelFieldFactory
, str
String field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
233 234 235 236 237 238 239 240 241 242 243 244 |
|
validate(**kwargs)
classmethod
Used to validate if all required parameters on a given field type are set.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
all params passed during construction |
{}
|
Source code in ormar\fields\model_fields.py
246 247 248 249 250 251 252 253 254 255 256 257 |
|
Text
Bases: ModelFieldFactory
, str
Text field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
327 328 329 330 331 332 333 334 335 336 337 338 |
|
ThroughField
Bases: ForeignKeyField
Field class used to access ManyToMany model through model.
Source code in ormar\fields\through_field.py
64 65 66 67 |
|
Time
Bases: ModelFieldFactory
, datetime.time
Time field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
490 491 492 493 494 495 496 497 498 499 500 501 |
|
UUID
Bases: ModelFieldFactory
, uuid.UUID
UUID field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
797 798 799 800 801 802 803 804 805 806 807 808 809 |
|
UniqueColumns
Bases: UniqueConstraint
Subclass of sqlalchemy.UniqueConstraint. Used to avoid importing anything from sqlalchemy by user.
Source code in ormar\fields\constraints.py
6 7 8 9 10 |
|
ForeignKey(to, *, name=None, unique=False, nullable=True, related_name=None, virtual=False, onupdate=None, ondelete=None, **kwargs)
Despite a name it's a function that returns constructed ForeignKeyField. This function is actually used in model declaration (as ormar.ForeignKey(ToModel)).
Accepts number of relation setting parameters as well as all BaseField ones.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
to |
Union[Type[T], ForwardRef]
|
target related ormar Model |
required |
name |
str
|
name of the database field - later called alias |
None
|
unique |
bool
|
parameter passed to sqlalchemy.ForeignKey, unique flag |
False
|
nullable |
bool
|
marks field as optional/ required |
True
|
related_name |
str
|
name of reversed FK relation populated for you on to model |
None
|
virtual |
bool
|
marks if relation is virtual. It is for reversed FK and auto generated FK on through model in Many2Many relations. |
False
|
onupdate |
Union[ReferentialAction, str]
|
parameter passed to sqlalchemy.ForeignKey. How to treat child rows on update of parent (the one where FK is defined) model. |
None
|
ondelete |
Union[ReferentialAction, str]
|
parameter passed to sqlalchemy.ForeignKey. How to treat child rows on delete of parent (the one where FK is defined) model. |
None
|
kwargs |
Any
|
all other args to be populated by BaseField |
{}
|
Returns:
Type | Description |
---|---|
ForeignKeyField
|
ormar ForeignKeyField with relation to selected model |
Source code in ormar\fields\foreign_key.py
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
|
ManyToMany(to, through=None, *, name=None, unique=False, virtual=False, **kwargs)
Despite a name it's a function that returns constructed ManyToManyField. This function is actually used in model declaration (as ormar.ManyToMany(ToModel, through=ThroughModel)).
Accepts number of relation setting parameters as well as all BaseField ones.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
to |
ToType
|
target related ormar Model |
required |
through |
Optional[ToType]
|
through model for m2m relation |
None
|
name |
str
|
name of the database field - later called alias |
None
|
unique |
bool
|
parameter passed to sqlalchemy.ForeignKey, unique flag |
False
|
virtual |
bool
|
marks if relation is virtual. It is for reversed FK and auto generated FK on through model in Many2Many relations. |
False
|
kwargs |
Any
|
all other args to be populated by BaseField |
{}
|
Returns:
Type | Description |
---|---|
ManyToManyField
|
ormar ManyToManyField with m2m relation to selected model |
Source code in ormar\fields\many_to_many.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
|
Through(to, *, name=None, related_name=None, **kwargs)
Despite a name it's a function that returns constructed ThroughField. It's a special field populated only for m2m relations. Accepts number of relation setting parameters as well as all BaseField ones.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
to |
ToType
|
target related ormar Model |
required |
name |
str
|
name of the database field - later called alias |
None
|
related_name |
str
|
name of reversed FK relation populated for you on to model |
None
|
kwargs |
Any
|
all other args to be populated by BaseField |
{}
|
Returns:
Type | Description |
---|---|
ForeignKeyField
|
ormar ForeignKeyField with relation to selected model |
Source code in ormar\fields\through_field.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|