default column value in postgresql code example
Example: POSTGRES INTEGER SET DEFAULT VALUE
score INTEGER DEFAULT 1
/* The variable name is score, and the default value for it is 1 */
score INTEGER DEFAULT 1
/* The variable name is score, and the default value for it is 1 */