All public logs

Jump to navigation Jump to search

Combined display of all available logs of HTYP. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 18:21, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.4/file/menu/nav (Moved to another site: content was: "==Purpose== Code in this folder defines simple navigation item classes. ==Files== * ../page/PageElement ** '''NavBase''' *** '''NavFolder''' *** '''NavLink''' **** '''NavLinkFixed'''", and the only contributor was "Woozle" (talk))
  • 18:19, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/tInternalStorage (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> ---- CEMENTS: tSequentialAccess NOTE: should probably be named tInternalSequentialStorage or similar: trait tInternalStorage { use tSequentialAccess; private $arRows = array(); private $idxData = -1; // ++ DATA STATUS ++ // ---- RETURNS: number of rows in the resultset: public fu...", and the only contributor was "Woozle" (...)
  • 18:19, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/tIOSource internal (Moved to another site: content was: "{{page/obsolete|ferreteria}} <source lang=php> :::: PURPOSE: adds features to I/O source that support rows stored in an internal keyed array REPLACES: fcDataTable_array USE IN: cIOSource: trait tIOSource_internal { public function SetRow($sKey,cIORow $rc) protected function GetAllRows() public function GetRows_forAll() } </source> * '''replaced by''': {{l/fe...", and the only contributor was "Woozle" (...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/tHasTableSource (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> tttt STANDARD USE: storage PortalRow class: trait tHasTableSource { use tQueryableSource; abstract protected function GetTableName(); // ALIAS protected function SourceString_forSelect() { $sName = $this->GetTableName(); return "`$sName`"; } } </source> * '''file''': {{l/ferreteria/f...", and the only contributor was "Woozle" (...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/tFieldRow Storage (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> tttt PURPOSE: FieldRow with storage portals TODO: will eventually need a corresponding trait for display portals: trait tFieldRow_Storage { abstract protected function GetStoragePortalsClass(); public function GetStoragePortals() { $sClass = $this->GetStoragePortalsClass(); return new $sClass($this);...", and the only contributor was "Woozle" (...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/tFieldClasses (Moved to another site: content was: "{{page/obsolete|ferreteria}} <source lang=php> trait tFieldClasses { // RETURNS: list of fields we expect to find abstract public function GetFieldClassArray(); // RETURNS: string representing class of the field named by $sKey public function GetClass_forField($sKey) { public function GetClass_default() { protected function HandleMissingField($sKey) { } </...", and the only contributor was "Woozle" (...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/tDatabaseStorage (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> tttt CEMENTS tSequentialAccess USE WITH: tQueryableSource type: trait tDatabaseStorage { use tSequentialAccess; // ++ DATA CONTROL ++ // // CEMENTS: tSequentialAccess public function RewindRows() { $this->GetDatabase()->Result_Rewind($this); } // -- DATA CONTROL -- // // ++ DATA STATU...", and the only contributor was "Woozle" (...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/tDataDesign singleKey (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> trait tDataDesign_singleKey { abstract public function GetKeyName(); // ++ UTILITY ++ // // 2017-03-18 created for EventPlex public function GetRows_forKeyList($sqlIDs) { $sqlWhere = $this->GetKeyName().' IN ('.$sqlIDs.')'; return $this->SelectRows($sqlWhere); } // -- UTILITY -- // } <...", and the only contributor was "Woozle" (...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/tDataDesign SourcedRow (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> trait tDataDesign_SourcedRow { public function GetClass_forField($sKey) { return $this->GetSourceObject()->GetClass_forField($sKey); } } </source> * '''file''': {{l/ferreteria/file|data/core/design.php}} * '''used by''': {{l/ferreteria/class|cMemoryRow}}", and the only contributor was "Woozle" (talk))
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/tDataDesignDefaults (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> trait tDataDesignDefaults { protected function GetFieldClassArray() { return array(); } public function GetClass_default() { return __NAMESPACE__.'\\cIOField_Text'; } } </source> * '''file''': {{l/ferreteria/file|data/core/design.php}} * '''used by''': {{l/ferreteria/class|cMemoryRow}}", and the only contributor was "Woozle" (talk))
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/tDataDesign (Moved to another site: content was: "{{page/code/class}} <source lang=php> trait tDataDesign { // RETURNS: list of fields we expect to find abstract public function GetFieldClassArray(); // RETURNS: string representing class of the field named by $sKey private $arClasses = NULL; public function GetClass_forField($sKey) { public function GetClass_default() { protected function HandleMissin...", and the only contributor was "Woozle" (...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/ifRowsBlob (Moved to another site: content was: "{{page/code/class}} <source lang=php> iiii PURPOSE: interface expected for reading rows from database into portal TODO: Rename *ResultBlob() fx to specifically refer to "rows".: interface ifRowsBlob { function SetResultBlob($r); function GetResultBlob(); } </source> * '''file''': {{l/ferreteria/file|data/db/db.php}} * '''implemented by''': {{l/ferreteria/class|tRo...", and the only contributor was "Woozle" (...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/fctUserSessions (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> :::: PURPOSE: Handles the table of user sessions: class fctUserSessions extends ferreteria\data\cStandardTable { use ftFrameworkAccess; // OVERRIDE protected function InitVars() { $this->ClearSession(); } // CEMENT protected function GetTableName() { return 'user_session'; } // CEMENT protected...", and the only contributor was "Woozle" ([...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/fcrUserSession (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> :::: PURPOSE: Represents a single user session record: class fcrUserSession extends \ferreteria\data\cStandardRow { use ftVerbalObject; // ++ SETUP ++ // protected function InitVars() { public function InitNew() { // ++ CLASSES ++ // protected function ClientsClass() { return 'fctUserClients'; } /...", and the only contributor was "Woozle" (...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/fcrDropInModule (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> :::: FIELDS: [name]: short name for module [descr]: one-line description [version]: version number (can be non-numeric) [date]: release date in YYYY/MM/DD format [URL]: URL for more information about the module: class fcrDropInModule extends ferreteria\data\cIORow_sourced { // ++ SETUP ++ //...", and the only contributor was "Woozle" ([[User tal...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/fcDropInManager (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> class fcDropInManager extends cIOSource_internal { // METHOD: Goes through App object-factory so we don't get more than one regardless of how it's requested. static public function Me() { // CEMENT protected function RowsClass() { return 'fcrDropInModule'; } // CEMENT public function GetFieldClassArray() {...", and the only contributor was "Woozle" ([[...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cStandardTable (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> abstract class cStandardTable extends cIOSource implements ifDatabaseSource { use tTableSource; use tSimpleFields; use tDataDesignDefaults; } </source> * '''file''': {{l/ferreteria/file|data/core/systems.php}} * '''extends''': {{l/ferreteria/class|cIOSource}} * '''implements''': {{l/ferreteria/class|ifDatabaseSource}} *...", and the only contributor was "Woozle" (...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cStandardRow (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> /*:::: PURPOSE: data-row management for storage I/O FUNCTIONALITY: table-sourced row with single "ID" index REPLACES: fcDataRow HISTORY: 2018-09-30 started 2018-11-30 mostly gutted 2018-12-15 Sources are now pointed to by storage-type PortalRows, not IORows 2019-01-05 renamed from cFieldRowStandard to cStand...", and the only contributor was "Woozle" (...)
  • 18:18, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cPortalRow storage (Moved to another site: content was: "{{page/code/class}} <source lang=php> class cPortalRow_storage extends cPortalRow implements ifLoadableRows { use tLoadableRow; // lets DB store its resource-blob protected function GetPortalType() { return cIOField::ksPortalStorage; } } </source> * '''file''': {{l/ferreteria/file|data/portals/rows/storage.php}} * '''extends''': {{l/ferreteria/class|cPortal...", and the only contributor was "Woozle" (...)
  • 18:17, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cPortalRow native (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> class cPortalRow_native extends cPortalRow { use tInternalStorage; protected function GetPortalType() { return cIOField::ksPortalNative; } protected function SetPortals_fromFields(array $arFields) { foreach ($arFields as $sKey => $oField) { $oPortal = $oField->MakeCalculator();...", and the only contributor was "Woozle" ([[Use...)
  • 18:17, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cPortalRow database (Moved to another site: content was: "{{page/code/class}} <source lang=php> :::: ABSTRACT: GetTableName(), FieldsString_forSelect(): abstract class cPortalRow_database extends cPortalRow_storage { use tDatabaseStorage; public function __construct(cFieldRow $rs) { $this->SetRowObject($rs); } } </source> * '''file''': {{l/ferreteria/file|data/core/systems.php}} * '''extends''': {{l/ferreteria...", and the only contributor was "Woozle" (...)
  • 18:17, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cPortalRow Table (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> abstract class cPortalRow_Table extends cPortalRow_database { use tTableSource; } </source> * '''file''': {{l/ferreteria/file|data/core/systems.php}} * '''extends''': {{l/ferreteria/class|cPortalRow_database}}", and the only contributor was "Woozle" (talk))
  • 18:17, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cPortalRow (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> abstract class cPortalRow { public function __construct(cFieldRow $rs) { $this->SetRowObject($rs); } protected function SetRowObject(cFieldRow $rs) { $this->rs = $rs; } ---- PUBLIC because some operations return PortalRow objects and we need to get back to the Row object: public function GetRowObject(...", and the only contributor was "Woozle" (...)
  • 18:17, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIOSource standard query (Moved to another site: content was: "{{page/obsolete|ferreteria}} <source lang=php> abstract class cIOSource_standard_query extends cIOSource_db { use tSelectable_Source; } </source> * '''file''': <s>{{l/ferreteria/file|data/sources/source-db.php}}</s> * '''extends''': <s>{{l/ferreteria/class|cIOSource_db}}</s> * '''uses''': <s>{{l/ferreteria/class|tSelectable_Source}}</s> * '''extended by''': ** FinanceFerret...", and the only contributor was "Woozle" ([[...)
  • 18:15, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cMemoryTable (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> abstract class cMemoryTable extends cIOSource { use tInternalStorage; } </source> * '''file''': {{l/ferreteria/file|data/core/systems.php}} * '''uses''': {{l/ferreteria/class|tInternalStorage}}", and the only contributor was "Woozle" (talk))
  • 18:15, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cMemoryRow (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> class cMemoryRow extends cFieldRow { use tMakableFieldRow; //use tDataDesign; use tDataDesign_SourcedRow; use tSourcedFieldRow; } </source> * '''file''': {{l/ferreteria/file|data/core/systems.php}} * '''extends''': {{l/ferreteria/class|cMakableFieldRow}} * '''uses''': ** {{l/ferreteria/class|tDataDesign_SourcedRow}}...", and the only contributor was "Woozle" (...)
  • 18:15, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cMakableFieldRow (Moved to another site: content was: "#REDIRECT Ferreteria/class/tMakableFieldRow", and the only contributor was "Woozle" (talk))
  • 18:15, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIOSource standard table (Moved to another site: content was: "{{page/obsolete|ferreteria}} <source lang=php> // PURPOSE: standard db table source with a single "ID" key abstract class cIOSource_standard_table extends cIOSource_db_keyed { use tSelectable_Source_simple; use tInsertable_Source; use tUpdateable_Source; public function GetKeyName() { return 'ID'; } protected function SourceString_forSelect() // returns Table...", and the only contributor was "Woozle" (...)
  • 18:15, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIOSource internal (Moved to another site: content was: "{{page/obsolete|ferreteria}} <source lang=php> abstract class cIOSource_internal extends cIOSource { use tIOSource_internal; } </source> * '''Replaced by''': {{l/ferreteria/class|cMemoryTable}} * '''File''': <s>{{l/ferreteria/file|data/sources/source.php}}</s> * '''Extends''': {{l/ferreteria/class|cIOSource}} * '''Trait''': {{l/ferreteria/class|tIOSource_internal}} * '''Used...", and the only contributor was "Woozle" ([...)
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class (Moved to another site: content was: "{| align=right |- | ===All Classes=== {{#ask: thing type::Ferreteria/class version::v3 |format=broadtable |limit=50 |offset=0 |link=all |sort= |order=asc |headers=show |searchlabel=... further results |class=sortable wikitable smwtable }} |} ===Root Classes=== * {{l/version|class|cIOSource}} (TODO: rename to cDataSource) * {{l/version|class|cFieldRow}} * {{l/vers...", and the only contributor was "Woozle" (...)
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIORowDisplay (Moved to another site: content was: "#REDIRECT Ferreteria/class/cFieldRowDisplay", and the only contributor was "Woozle" (talk))
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIORowStandard (Moved to another site: content was: "#REDIRECT Ferreteria/class/cFieldRowStandard", and the only contributor was "Woozle" (talk))
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIOSource db keyed (Moved to another site: content was: "{{page/obsolete|ferreteria}} <source lang=php> abstract class cIOSource_db_keyed extends cIOSource_db { use tSource_SingleKeyed; } </source> * '''replaced by''': (not sure) * '''file''': <s>{{l/ferreteria/file|data/sources/source-db.php}}</s> * '''extends''': {{l/ferreteria/class|cIOSource_db}} * '''uses''': {{l/ferreteria/class|tSource_SingleKeyed}} * '''extended by''': ** '...", and the only contributor was "Woozle" (...)
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIOSource db (Moved to another site: content was: "{{page/obsolete|ferreteria}} <source lang=php> PURPOSE: source that connects to a database CONCEPT: tables and table-like objects: abstract class cIOSource_db extends cIOSource { public function SetDatabase(cDatabaseConnection $db) public function GetDatabase() : cDatabaseConnection } </source> * '''replaced by''': {{l/ferreteria/class|tTableSource}} * '''file'''...", and the only contributor was "Woozle" (...)
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIOSource (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> abstract class cIOSource { use tFieldClasses; abstract protected function RowsClass(); public function SpawnRows() } </source> * '''file''': {{l/ferreteria/file|data/sources/source.php}} * '''uses''': {{l/ferreteria/class|tFieldClasses}} * '''extended by''': ** (A) '''{{l/ferreteria/class|cIOSource_internal}}''' extend...", and the only contributor was "Woozle" (...)
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIORow sourced (Moved to another site: content was: "#REDIRECT Ferreteria/class/cFieldRow sourced", and the only contributor was "Woozle" (talk))
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIORow internal (Moved to another site: content was: "#REDIRECT Ferreteria/class/cFieldRow internal", and the only contributor was "Woozle" (talk))
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIORowMemory (Moved to another site: content was: "#REDIRECT Ferreteria/class/cFieldRowMemory", and the only contributor was "Woozle" (talk))
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cIORow (Moved to another site: content was: "#REDIRECT Ferreteria/class/cFieldRow", and the only contributor was "Woozle" (talk))
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cFieldRow sourced (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> abstract class cFieldRow_sourced extends cFieldRow { public function __construct(cIOSource $oSource) { $this->SetSourceObject($oSource); } protected function SetSourceObject(cIOSource $oSource) { $this->oSource = $oSource; } // PUBLIC so PortalRow objects can access public function GetSourceObject() : cIOSource {...", and the only contributor was "Woozle" (...)
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cFieldRow internal (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> /*---- HISTORY: 2018-10-09 A note said "I'm not sure this class needs to exist" All code was removed either before this or not long after. 2018-12-03 So, it looks like we need this as a way of not needing to have a Source (Table) for internal data. 2018-12-04 but then I ended up commenting everything out again,...", and the only contributor was "Woozle" ([...)
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cFieldRowStandard (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> :::: REPLACES: fcDataRow COPYING METHODS OVER AS NEEDED: abstract class cFieldRowStandard extends cFieldRow_sourced implements ifSingleKeyedRow { use tKeyedRow; use tSaveableRow; use tSingleKey_Row; //use tLoadableRow; // this is a Portal trait (lets DB store its resource-blob) //use tDatabaseStorage...", and the only contributor was "Woozle" (...)
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cFieldRowMemory (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> /*---- NOTE: this is sort of a hybrid between a cIORow and a cPortalRow. It's probably not the best way to do things, since maybe we'd actually want proper Porals for input (from memory) and output (to screen), but maybe it's easier to work with in a hurry (at least until I'm more familiar with this wacky system I...", and the only contributor was "Woozle" (...)
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cFieldRowDisplay (Moved to another site: content was: "{{page/code/class|ferreteria}} <source lang=php> PURPOSE: data-row management for display I/O REPLACES: forms HISTORY: 2018-09-30 started: class cFieldRowDisplay extends cFieldRow { //use ftVerbalObject; // ++ SETUP ++ // public function __construct(string $sName) { $this->SetNameString($sName); $this->InitVars(); } protected function InitVa...", and the only contributor was "Woozle" (...)
  • 18:14, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3/class/cFieldRow (Moved to another site: content was: "{{page/code/class}} <source lang=php> abstract class cFieldRow { use tFieldClasses; public function SetFields(array $ar) { public function ClearFields() { protected function GetFields() { protected function SetField(cIOField $oField) { protected function ZapField($sKey) { protected function RetrieveField($sKey) { // PURPOSE: RetrieveField() but th...", and the only contributor was "Woozle" (...)
  • 18:13, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v0.3 (Moved to another site: content was: "Things that need to be rewritten at a low level: * '''2017-05-26''' Conversion to/from storage format really ought to be a property of the recordset. Maybe there should be a fcFields object with fcField elements, each of which can have one or more fcFormat objects attached to it. Then instead of $rc->GetFieldValue() we could have something like $rc->GetField()->GetValue(), $rc->G...", and the only contributor was "Woozle" (...)
  • 18:12, 22 May 2022 Woozle talk contribs deleted page Ferreteria/sql/user token (Moved to another site: content was: "==About== * '''Purpose''': for storing tokens that authorize users to change things associated with an email address (mainly password) ==Fields== * '''Type''': type of action being authorized (currently: 1 = create new account, 2 = reset password) * '''Entity''': value referring to entity being authorized (email address, user ID) ==History== * '''2013-10-03''' created * '''2013-1...", and the only contributor was "Woozle" (...)
  • 18:12, 22 May 2022 Woozle talk contribs deleted page Ferreteria/sql/user session (Moved to another site: content was: "==About== This table was originally an inextricable part of VbzCart, but it is now mostly handled through the standalone user-session library. Only ID_Cart and ID_Order have been added for VbzCart. ==Rules== * A new session should be created whenever the "same" client doesn't remember the session cookie (could be a different computer on the same IP address), or if the session has...", and the only contributor was "Woozle" (...)
  • 18:11, 22 May 2022 Woozle talk contribs deleted page Ferreteria/sql/user permit (Moved to another site: content was: "==About== * '''Purpose''': a list of access permits (permissions) that groups (and therefore users) can have * '''Module''': {{l/ferreteria/module|users}} * '''Used by''': {{l/same|ugroup_x_upermit}} * '''History''': ** '''2013-11-27''' written ** '''2017-01-29''' moved from VbzCart to Ferreteria a few days ago; renamed from uperm to user_permit; changed MYISAM to InnoDB ** '...", and the only contributor was "Woozle" (...)
  • 18:11, 22 May 2022 Woozle talk contribs deleted page Ferreteria/sql/user group (Moved to another site: content was: "==About== * '''Purpose''': a list of access-control groups to which users can belong * '''Used by''': {{l/same|uacct_x_ugroup}} * '''History''': ** '''2013-11-27''' written ** '''2017-01-26''' moved to Ferreteria, renamed from ugroup to user_group, changed from MYISAM to InnoDB ==SQL== <source lang=mysql>CREATE TABLE `user_group` ( `ID` INT NOT NULL AUTO_I...", and the only contributor was "Woozle" (...)
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)