mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Adds a reasonably feature complete implementation of full text search using the built in PostgreSQL engine. It uses public APIs from Expression and Lookup. With thanks to Tim Graham, Simon Charettes, Josh Smeaton, Mikey Ariel and many others for their advice and review. Particular thanks also go to the supporters of the contrib.postgres kickstarter.
		
			
				
	
	
		
			25 lines
		
	
	
		
			456 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			456 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ====================
 | |
| Models and databases
 | |
| ====================
 | |
| 
 | |
| .. module:: django.db
 | |
| 
 | |
| A model is the single, definitive source of data about your data. It contains
 | |
| the essential fields and behaviors of the data you're storing. Generally, each
 | |
| model maps to a single database table.
 | |
| 
 | |
| .. toctree::
 | |
|    :maxdepth: 1
 | |
| 
 | |
|    models
 | |
|    queries
 | |
|    aggregation
 | |
|    search
 | |
|    managers
 | |
|    sql
 | |
|    transactions
 | |
|    multi-db
 | |
|    tablespaces
 | |
|    optimization
 | |
|    examples/index
 |