Arquivos
wMind/mind3rd/env/defaults.ini
T
Felipe Nascimento de Moura 04aa11aaab fixed bugs around default values and fks which were also pks
Also, added the program dqb to build DDL codes
Working on postgres DDL generator
2011-03-30 22:09:55 -03:00

41 linhas
1.5 KiB
INI
Arquivo Executável

; this file can be changed as you wish
; it should represent your preferences about how mind should behave
;
; the default idiom
default_human_language=en
default_human_languageName=en
; default timezone
timezone=America/Sao_paulo
; the default programming language
default_machine_language=php
default_dbms=pgsql
; default framework to be generated with, if any
; use the name of the framework here, or none to not use any
; the framework will be availiable or not, to the choosen machine language
default_framework=none ; not yet implemented
; use null, or the
; should it look for updates?
; use on, 1 or true to enable it, anything else will represent a false value
auto_update=on
; mind should show any error of itself?
; you can use it to report us any problem you may find
show_building_errors=on
; should it learn things with you?
learning_machine=on
ask_about_doubts=on
show_decisions=on
show_tips=on
; you can also enable the use of plugins
plugins=on
; default identifier of primary key properties
pk_prefix="pk_"
; add the pk_prefix to properties that were defined as key, manuyally?
add_pk_prefix_to_all_keys=on
; default identifier of foreign key properties
fk_prefix="fk_"
; this will be the name of the additional column on tables which require a
; new column to enumerate multiple PrimaryKeys
counter_col="counter"
; Varchar and Char properties should have mandatorily a size, if none is passed,
; the following value will be used as size
default_character_length=255