I have multiple tables inside my database:
groups_name1
groups_name2
etc.
Is there a way to keep the columns of all the tables in sync with each other?
+----+------+-----------+
| id | name | last-edit |
+----+------+-----------+
+----+------+
| id | name | (copy column 'last-edit' here and all the other tables)
+----+------+
What I mean is that when I add a new column named 'last-edit' inside the first table, this column will duplicate to all the other tables. But the data inside the columns will only be unique to the original tables.