検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 35 for extension (0.021 sec.)
Database migration operations — Django 4.0.6 ドキュメント 14560
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jango.contrib.postgres.operations module. Creating extension using migrations ¶ You can create a PostgreSQL ext ... g a migration file. This example creates an hstore extension, but the same principles apply for other extension ... s. Set up the hstore extension in PostgreSQL before the first CreateModel or AddF ... s HStoreField by adding a migration with the HStoreExtension operation. For example: from django.contrib.postgr ...
https://man.plustar.jp/django/ref/contrib/postgres/operations.html - [similar]
Installing PostGIS — Django 4.0.6 ドキュメント 11839
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... reating a spatial database ¶ PostGIS 2 includes an extension for PostgreSQL that's used to enable spatial funct ... ty: $ createdb <db name> $ psql <db name> > CREATE EXTENSION postgis; The database user must be a superuser in ... order to run CREATE EXTENSION postgis; . The command is run during the migrate p ... om django.contrib.postgres.operations import CreateExtension from django.db import migrations class Migration ( ...
https://man.plustar.jp/django/ref/contrib/gis/install/postgis.html - [similar]
PostgreSQL specific lookups — Django 4.0.6 ドキュメント 11600
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e characters) shared, using a dedicated PostgreSQL extension. A trigram lookup is given an expression and retur ... s' in your INSTALLED_APPS and activate the pg_trgm extension on PostgreSQL. You can install the extension using ... the TrigramExtension migration operation. The trigram_similar lookup ca ... rd similarity lookups using a dedicated PostgreSQL extension. It can be approximately understood as measuring t ...
https://man.plustar.jp/django/ref/contrib/postgres/lookups.html - [similar]
バリデータ — Django 4.0.6 ドキュメント 9356
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... erence between max_digits and decimal_places . FileExtensionValidator ¶ class FileExtensionValidator ( allowed_ ... ¶ Raises a ValidationError with a code of 'invalid_extension' if the extension of value.name ( value is a File ... ) isn't found in allowed_extensions . The extension is compared case-insensitively wi ... th allowed_extensions . 警告 Don't rely on validation of the file exten ...
https://man.plustar.jp/django/ref/validators.html - [similar]
django.core.validators — Django 4.0.6 ドキュメント 9229
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... places ) [ドキュメント] @deconstructible class FileExtensionValidator : message = _ ( "File extension “ %(exten ... sion)s ” is not allowed. " "Allowed extensions are: %(allowed_extensions)s ." ) code = "invalid_ ... extension" def __init__ ( self , allowed_extensions = None , message = None , code = None ): if allow ... ed_extensions is not None : allowed_extensions = [ allowed_exte ...
https://man.plustar.jp/django/_modules/django/core/validators.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 8370
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mats by ending the filename with the corresponding extension. For example, to output the data as a compressed J ... ded fixture names. If the named fixture has a file extension, only fixtures of that type will be loaded. For ex ... nly load JSON fixtures called mydata . The fixture extension must correspond to the registered name of a serial ... izer (e.g., json or xml ). If you omit the extensions, Django will search all available fixture types f ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
PostgreSQL specific model indexes — Django 4.0.6 ドキュメント 8195
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e this index access you need to activate the bloom extension on PostgreSQL. You can install it using the BloomE ... rator classes , you need to activate the btree_gin extension on PostgreSQL. You can install it using the BtreeG ... inExtension migration operation. Set the fastupdate parameter ... ator classes , you need to activate the btree_gist extension on PostgreSQL. You can install it using the BtreeG ...
https://man.plustar.jp/django/ref/contrib/postgres/indexes.html - [similar]
Django 1.11.2 リリースノート — Django 4.0.6 ドキュメント 8020
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... a CIFS mount ( #28170 ). Moved the ImageField file extension validation added in Django 1.11 from the model fie ... reallow the use case of storing images without an extension ( #28242 ). 目次 Django 1.11.2 リリースノート Mino ...
https://man.plustar.jp/django/releases/1.11.2.html - [similar]
データベース — Django 4.0.6 ドキュメント 7956
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... abase configuration in DATABASES : import psycopg2.extensions DATABASES = { # ... 'OPTIONS' : { 'isolation_leve ... l' : psycopg2 . extensions . ISOLATION_LEVEL_SERIALIZABLE , }, } 注釈 Under ... swith lookup types. Migration operation for adding extensions ¶ If you need to add a PostgreSQL extension (like ... , postgis , etc.) using a migration, use the CreateExtension operation. Server-side cursors ¶ When using QueryS ...
https://man.plustar.jp/django/ref/databases.html - [similar]
マイグレーション操作 — Django 4.0.6 ドキュメント 7669
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ple, let's make an operation that loads PostgreSQL extensions (which contain some of PostgreSQL's more exciting ... rations.operations.base import Operation class LoadExtension ( Operation ): reversible = True def __init__ ( se ... te , to_state ): schema_editor . execute ( "CREATE EXTENSION IF NOT EXISTS %s " % self . name ) def database_ba ... tate , to_state ): schema_editor . execute ( "DROP EXTENSION %s " % self . name ) def describe ( self ): return ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
PREV 1 2 3 4 NEXT