Skip to content

Instantly share code, notes, and snippets.

@hub-cap
Created April 12, 2013 18:48
Show Gist options
  • Save hub-cap/5374204 to your computer and use it in GitHub Desktop.
Save hub-cap/5374204 to your computer and use it in GitHub Desktop.
mysql> select * From actions;
+------------+------------+------------+---------+----+-----------------+-------------+------------------------------------------+---------+------------+-------------+---------+
| created_at | updated_at | deleted_at | deleted | id | action | action_uuid | request_id | user_id | start_time | finish_time | message |
+------------+------------+------------+---------+----+-----------------+-------------+------------------------------------------+---------+------------+-------------+---------+
| NULL | NULL | NULL | 0 | 1 | create_instance | 1 | req-825441cf-0bd4-4276-9d8c-687c9643cefa | radmin | NULL | NULL | NULL |
+------------+------------+------------+---------+----+-----------------+-------------+------------------------------------------+---------+------------+-------------+---------+
1 row in set (0.00 sec)
mysql> select * From action_events;
+------------+------------+------------+---------+----+---------------+-----------+------------+-------------+--------+-----------+
| created_at | updated_at | deleted_at | deleted | id | event | action_id | start_time | finish_time | result | traceback |
+------------+------------+------------+---------+----+---------------+-----------+------------+-------------+--------+-----------+
| NULL | NULL | NULL | 0 | 1 | create_volume | 1 | NULL | NULL | NULL | NULL |
| NULL | NULL | NULL | 0 | 2 | create_server | 1 | NULL | NULL | NULL | NULL |
| NULL | NULL | NULL | 0 | 3 | guest_prepare | 1 | NULL | NULL | NULL | NULL |
+------------+------------+------------+---------+----+---------------+-----------+------------+-------------+--------+-----------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment