first commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<?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";
|
||||
?>
|
||||
Reference in New Issue
Block a user