Esempio n. 1
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     $Schema = clone $this->Connection->getSchema();
     $this->setTableCustody($Schema);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 2
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     /**
      * Table
      */
     $Schema = clone $this->Connection->getSchema();
     $tblSalutation = $this->setTableSalutation($Schema);
     $this->setTablePerson($Schema, $tblSalutation);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 3
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     $Schema = clone $this->Connection->getSchema();
     $tblGroup = $this->setTableGroup($Schema);
     $tblCategory = $this->setTableCategory($Schema);
     $this->setTableGroupCategory($Schema, $tblGroup, $tblCategory);
     $tblSubject = $this->setTableSubject($Schema);
     $this->setTableCategorySubject($Schema, $tblCategory, $tblSubject);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 4
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     /**
      * Table
      */
     $Schema = clone $this->Connection->getSchema();
     $tblProspectAppointment = $this->setTableProspectAppointment($Schema);
     $tblProspectReservation = $this->setTableProspectReservation($Schema);
     $this->setTableProspect($Schema, $tblProspectAppointment, $tblProspectReservation);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 5
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     /**
      * Table
      */
     $Schema = clone $this->Connection->getSchema();
     $tblCommonBirthDates = $this->setTableCommonBirthDates($Schema);
     $tblCommonInformation = $this->setTableCommonInformation($Schema);
     $this->setTableCommon($Schema, $tblCommonBirthDates, $tblCommonInformation);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 6
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     /**
      * Table
      */
     $Schema = clone $this->Connection->getSchema();
     $tblAccountKeyType = $this->setTableAccountKeyType($Schema);
     $tblAccountType = $this->setTableAccountType($Schema);
     $tblAccountKey = $this->setTableAccountKey($Schema, $tblAccountKeyType);
     $this->setTableAccount($Schema, $tblAccountType, $tblAccountKey);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 7
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     /**
      * Table
      */
     $Schema = clone $this->Connection->getSchema();
     $tblPhone = $this->setTablePhone($Schema);
     $tblType = $this->setTableType($Schema);
     $this->setTableToPerson($Schema, $tblPhone, $tblType);
     $this->setTableToCompany($Schema, $tblPhone, $tblType);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 8
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     /**
      * Table
      */
     $Schema = clone $this->Connection->getSchema();
     $tblPaymentType = $this->setTablePaymentType($Schema);
     $tblDebtor = $this->setTableDebtor($Schema, $tblPaymentType);
     $this->setTableDebtorCommodity($Schema, $tblDebtor);
     $this->setTableReference($Schema, $tblDebtor);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 9
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     /**
      * Table
      */
     $Schema = clone $this->Connection->getSchema();
     $tblAccount = $this->setTableAccount($Schema);
     $tblIdentification = $this->setTableIdentification($Schema);
     $this->setTableSession($Schema, $tblAccount);
     $this->setTableAuthorization($Schema, $tblAccount);
     $this->setTableAuthentication($Schema, $tblAccount, $tblIdentification);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 10
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     /**
      * Table
      */
     $Schema = clone $this->Connection->getSchema();
     $tblInvoice = $this->setTableInvoice($Schema);
     $tblInvoiceItem = $this->setTableInvoiceItem($Schema, $tblInvoice);
     $this->setTableInvoiceAccount($Schema, $tblInvoiceItem);
     $tblTempInvoice = $this->setTableTempInvoice($Schema);
     $this->setTableTempInvoiceCommodity($Schema, $tblTempInvoice);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 11
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     /**
      * Table
      */
     $Schema = clone $this->Connection->getSchema();
     $tblBasket = $this->setTableBasket($Schema);
     $this->setTableBasketPerson($Schema, $tblBasket);
     $this->setTableBasketItem($Schema, $tblBasket);
     $tblBasketCommodity = $this->setTableBasketCommodity($Schema, $tblBasket);
     $this->setTableBasketCommodityDebtor($Schema, $tblBasketCommodity);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 12
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     /**
      * Table
      */
     $Schema = clone $this->Connection->getSchema();
     $tblRight = $this->setTableRight($Schema);
     $tblPrivilege = $this->setTablePrivilege($Schema);
     $tblLevel = $this->setTableLevel($Schema);
     $tblRole = $this->setTableRole($Schema);
     $this->setTablePrivilegeRight($Schema, $tblPrivilege, $tblRight);
     $this->setTableLevelPrivilege($Schema, $tblLevel, $tblPrivilege);
     $this->setTableRoleLevel($Schema, $tblRole, $tblLevel);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }
Esempio n. 13
0
 /**
  * @param bool $Simulate
  *
  * @return string
  */
 public function setupDatabaseSchema($Simulate = true)
 {
     /**
      * Table
      */
     $Schema = clone $this->Connection->getSchema();
     $tblStudentMedicalRecord = $this->setTableStudentMedicalRecord($Schema);
     $tblStudentTransport = $this->setTableStudentTransport($Schema);
     $tblStudentTransferEnrollment = $this->setTableStudentTransferEnrollment($Schema);
     $tblStudentTransferArrive = $this->setTableStudentTransferArrive($Schema);
     $tblStudentTransferProcess = $this->setTableStudentTransferProcess($Schema);
     $tblStudentTransferLeave = $this->setTableStudentTransferLeave($Schema);
     $tblStudentTransfer = $this->setTableStudentTransfer($Schema, $tblStudentTransferEnrollment, $tblStudentTransferArrive, $tblStudentTransferProcess, $tblStudentTransferLeave);
     $this->setTableStudent($Schema, $tblStudentMedicalRecord, $tblStudentTransport, $tblStudentTransfer);
     /**
      * Migration & Protocol
      */
     $this->Connection->addProtocol(__CLASS__);
     $this->Connection->setMigration($Schema, $Simulate);
     return $this->Connection->getProtocol($Simulate);
 }