mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-26 06:26:41 +00:00 
			
		
		
		
	* Increased the sippeers useragent max string size to 255. * Changed the queue_members uniqueid to an auto incremented integer instead of a string. * Increased the voicemail_messages BLOB size to LONGBLOB on mysql. * Fixed the add_tables_for_pjsip config change version downgrade actions to drop a table it created. * Adjusted the sample alembic.ini files cdr.ini.sample, config.ini.sample, and voicemail.ini.sample to give a mysql and postgres sqlalchemy.url lines. ASTERISK-23847 #close Reported by: Stephen More ASTERISK-23825 #close Reported by: Stephen More ASTERISK-23909 #close Reported by: Stephen More Review: https://reviewboard.asterisk.org/r/3870/ ........ Merged revisions 420211 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@420212 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # A generic, single database configuration.
 | |
| 
 | |
| [alembic]
 | |
| # path to migration scripts
 | |
| script_location = cdr
 | |
| 
 | |
| # template used to generate migration files
 | |
| # file_template = %%(rev)s_%%(slug)s
 | |
| 
 | |
| # max length of characters to apply to the
 | |
| # "slug" field
 | |
| #truncate_slug_length = 40
 | |
| 
 | |
| # set to 'true' to run the environment during
 | |
| # the 'revision' command, regardless of autogenerate
 | |
| # revision_environment = false
 | |
| 
 | |
| #sqlalchemy.url = driver://user:pass@localhost/dbname
 | |
| 
 | |
| #sqlalchemy.url = postgresql://user:pass@localhost/cdr
 | |
| sqlalchemy.url = mysql://user:pass@localhost/cdr
 | |
| 
 | |
| 
 | |
| # Logging configuration
 | |
| [loggers]
 | |
| keys = root,sqlalchemy,alembic
 | |
| 
 | |
| [handlers]
 | |
| keys = console
 | |
| 
 | |
| [formatters]
 | |
| keys = generic
 | |
| 
 | |
| [logger_root]
 | |
| level = WARN
 | |
| handlers = console
 | |
| qualname =
 | |
| 
 | |
| [logger_sqlalchemy]
 | |
| level = WARN
 | |
| handlers =
 | |
| qualname = sqlalchemy.engine
 | |
| 
 | |
| [logger_alembic]
 | |
| level = INFO
 | |
| handlers =
 | |
| qualname = alembic
 | |
| 
 | |
| [handler_console]
 | |
| class = StreamHandler
 | |
| args = (sys.stderr,)
 | |
| level = NOTSET
 | |
| formatter = generic
 | |
| 
 | |
| [formatter_generic]
 | |
| format = %(levelname)-5.5s [%(name)s] %(message)s
 | |
| datefmt = %H:%M:%S
 |