23 lines
765 B
PHP
23 lines
765 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
$SQL = "create table historycodes
|
||
|
|
|
||
|
|
(
|
||
|
|
|
||
|
|
historycode_serial serial,
|
||
|
|
historycode_code char(1) default null,
|
||
|
|
historycode_description varchar(120) default null,
|
||
|
|
historycode_active boolean default true,
|
||
|
|
|
||
|
|
historycode_creator varchar(100) default null,
|
||
|
|
historycode_created datetime default null,
|
||
|
|
historycode_changer varchar(100) default null,
|
||
|
|
historycode_changed datetime default null,
|
||
|
|
|
||
|
|
primary key (historycode_serial)
|
||
|
|
|
||
|
|
)
|
||
|
|
|
||
|
|
default character set = utf8";
|
||
|
|
?>
|