Skip to content

Instantly share code, notes, and snippets.

@Tiny-Giant
Created September 14, 2015 21:59
Show Gist options
  • Select an option

  • Save Tiny-Giant/773c801214bd6a356598 to your computer and use it in GitHub Desktop.

Select an option

Save Tiny-Giant/773c801214bd6a356598 to your computer and use it in GitHub Desktop.
+------------------+--------+--------------+------------------------------------------------------------------------------------------------------------------------------+--------+---------+----------+----------------+----------------------+----------------------+--------------------+
| Trigger          | Event  | Table        | Statement                                                                                                                    | Timing | Created | sql_mode | Definer        | character_set_client | collation_connection | Database Collation |
+------------------+--------+--------------+------------------------------------------------------------------------------------------------------------------------------+--------+---------+----------+----------------+----------------------+----------------------+--------------------+
| transactions__ai | INSERT | transactions | INSERT INTO jyai.transactions_history SELECT 'insert', NULL, NOW(), d.* FROM jyai.transactions AS d WHERE d.id = NEW.id      | AFTER  | NULL    |          | root@localhost | utf8                 | utf8_general_ci      | latin1_swedish_ci  |
| transactions__au | UPDATE | transactions | INSERT INTO jyai.transactions_history SELECT 'update', NULL, NOW(), d.* FROM jyai.transactions AS d WHERE d.id = NEW.id      | AFTER  | NULL    |          | root@localhost | utf8                 | utf8_general_ci      | latin1_swedish_ci  |
| transactions__bd | DELETE | transactions | INSERT INTO jyai.transactions_history SELECT 'delete', NULL, NOW(), d.* FROM jyai.transactions AS d WHERE d.id = OLD.id      | BEFORE | NULL    |          | root@localhost | utf8                 | utf8_general_ci      | latin1_swedish_ci  |
+------------------+--------+--------------+------------------------------------------------------------------------------------------------------------------------------+--------+---------+----------+----------------+----------------------+----------------------+--------------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment