From 00987933c4261ad7c219dd11ba5c44275ae0f262 Mon Sep 17 00:00:00 2001 From: inghamn Date: Fri, 18 Dec 2009 17:45:48 +0000 Subject: [PATCH] Fixed Typo: They're spelled "interments" git-svn-id: https://rosehill.googlecode.com/svn/branches/php@13 100bd78a-fc82-11de-b5bc-ffd2847a4b57 --- .../interments/{addInternmentForm.inc => addIntermentForm.inc} | 0 .../html/interments/{internmentList.inc => intermentList.inc} | 0 .../{updateInternmentForm.inc => updateIntermentForm.inc} | 0 classes/{Internment.php => Interment.php} | 0 classes/{InternmentList.php => IntermentList.php} | 0 html/interments/{addInternment.php => addInterment.php} | 0 html/interments/{updateInternment.php => updateInterment.php} | 0 scripts/migration/import.sql | 2 +- scripts/mysql.sql | 2 +- 9 files changed, 2 insertions(+), 2 deletions(-) rename blocks/html/interments/{addInternmentForm.inc => addIntermentForm.inc} (100%) rename blocks/html/interments/{internmentList.inc => intermentList.inc} (100%) rename blocks/html/interments/{updateInternmentForm.inc => updateIntermentForm.inc} (100%) rename classes/{Internment.php => Interment.php} (100%) rename classes/{InternmentList.php => IntermentList.php} (100%) rename html/interments/{addInternment.php => addInterment.php} (100%) rename html/interments/{updateInternment.php => updateInterment.php} (100%) 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),