dear,
I added new table to my current phprunner project,
build process have the error popup box appear :
C:\Program Files(x86)\source\include\variables.php(2) - Uknown Context @TABLE
then, after klik OK, second error popup box appear :
C:\Program Files(x86)\source\include\settings.php(2) - Uknown Context @TABLE
no problem if we didnt active the table for build,
here is the table cause the problem,
CREATE TABLE piutang
(
id
int(11) NOT NULL auto_increment,
instansi
varchar(50) default NULL,
tgl
date NOT NULL,
nota_no
varchar(25) default NULL,
nama_barang
varchar(75) NOT NULL,
kuantiti
int(11) default NULL,
satuan
varchar(10) default NULL,
us_dollar
int(11) default NULL,
rupiah
int(11) default NULL,
status_bayar
varchar(11) default NULL,
by_user
varchar(50) default NULL,
PRIMARY KEY (id
),
UNIQUE KEY id
(id
),
UNIQUE KEY instansi
(instansi
)
);
please advise me
regards
IYAN