5 lines
214 B
PHP
5 lines
214 B
PHP
|
<?php
|
||
|
|
||
|
defined('DECIMALSMALL') || define ( 'DECIMALSMALL','DECIMAL (5,2)' );
|
||
|
defined('DECIMALMIDDLE') || define ( 'DECIMALMIDDLE','DECIMAL (7,2)' );
|
||
|
defined('DECIMALBIG') || define ( 'DECIMALBIG','DECIMAL (9,2)' );
|