forked from science-ation/science-ation
8ee1f36f90
other stuff still works, this only adds on. And on second thought, I should probably disable the report type that would let someone use this.
9 lines
409 B
SQL
9 lines
409 B
SQL
ALTER TABLE `reports_items` ADD `fontname` VARCHAR( 32 ) NOT NULL AFTER `face` ,
|
|
ADD `fontstyle` SET( 'bold', 'italic', 'underline', 'strikethrough') NOT NULL AFTER `fontname` ,
|
|
ADD `fontsize` FLOAT NOT NULL AFTER `fontstyle` ;
|
|
|
|
ALTER TABLE `reports_items` ADD `valign` ENUM( 'top', 'middle', 'bottom' ) NOT NULL;
|
|
|
|
LTER TABLE `reports_items` ADD `on_overflow` ENUM( 'truncate', '...', 'scale' ) NOT NULL ;
|
|
|