diff --git a/blocks/html/interments/addInternmentForm.inc b/blocks/html/interments/addIntermentForm.inc similarity index 100% rename from blocks/html/interments/addInternmentForm.inc rename to blocks/html/interments/addIntermentForm.inc diff --git a/blocks/html/interments/internmentList.inc b/blocks/html/interments/intermentList.inc similarity index 100% rename from blocks/html/interments/internmentList.inc rename to blocks/html/interments/intermentList.inc diff --git a/blocks/html/interments/updateInternmentForm.inc b/blocks/html/interments/updateIntermentForm.inc similarity index 100% rename from blocks/html/interments/updateInternmentForm.inc rename to blocks/html/interments/updateIntermentForm.inc diff --git a/classes/Internment.php b/classes/Interment.php similarity index 100% rename from classes/Internment.php rename to classes/Interment.php diff --git a/classes/InternmentList.php b/classes/IntermentList.php similarity index 100% rename from classes/InternmentList.php rename to classes/IntermentList.php diff --git a/html/interments/addInternment.php b/html/interments/addInterment.php similarity index 100% rename from html/interments/addInternment.php rename to html/interments/addInterment.php diff --git a/html/interments/updateInternment.php b/html/interments/updateInterment.php similarity index 100% rename from html/interments/updateInternment.php rename to html/interments/updateInterment.php diff --git a/scripts/migration/import.sql b/scripts/migration/import.sql index f86164f..d7a1826 100644 --- a/scripts/migration/import.sql +++ b/scripts/migration/import.sql @@ -6,7 +6,7 @@ from rosehill.DEED r left join cemeteries c on r.whiteoak=substr(c.name,1,1); -insert internments(id,section,lot,book,pageNumber,deceasedDate, +insert interments(id,section,lot,book,pageNumber,deceasedDate, lastname,firstname,middleInitial, birthPlace,lastResidence,age,sex,cemetery_id,notes,lot2) select r.ID,r.SEC,r.LOT,r.BOOK,r.PAGENUM,r.DEATH, diff --git a/scripts/mysql.sql b/scripts/mysql.sql index d078a60..16a6d72 100644 --- a/scripts/mysql.sql +++ b/scripts/mysql.sql @@ -54,7 +54,7 @@ create table deeds ( foreign key (cemetery_id) references cemeteries(id) ) engine=InnoDB; -create table internments ( +create table interments ( id int(11) unsigned not null primary key auto_increment, section varchar(5), lot varchar(5),