- Issue created by @SocialNicheGuru
- Status changed to Needs review
8 months ago 9:37pm 15 August 2024 - πΊπΈUnited States SocialNicheGuru
Fix the config/schema/user_revision.schema
create an update hook that ensure that the revision table is created - Status changed to Needs work
6 months ago 10:44am 17 October 2024 - πΊπΈUnited States SocialNicheGuru
This is an update hook that will check for revision tables within the user object and update. It is based on the great work done in the .install file already
- πΊπΈUnited States SocialNicheGuru
Use this patch.
Last patch was malformed - πΊπΈUnited States SocialNicheGuru
I update the patch.
I can confirm the table included with the latest patch:
SHOW TABLES LIKE 'user_revision';
+--------------------------------------------+
| Tables_in_dev4devyearsyo_0 (user_revision) |
+--------------------------------------------+
| user_revision |
+--------------------------------------------+
1 row in set (0.007 sec)> DESCRIBE user_revision;
+--------------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+--------------------+------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | MUL | 0 | |
| revision_id | int(11) | NO | PRI | NULL | auto_increment |
| revision_user | int(10) unsigned | YES | | NULL | |
| revision_timestamp | int(10) unsigned | YES | | NULL | |
+--------------------+------------------+------+-----+---------+----------------+
4 rows in set (0.002 sec)