This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Array.apply( | |
| null, | |
| document.querySelectorAll('.cbox_table tbody tr:not(:last-child)') | |
| ) | |
| .map((node, i) => { | |
| var title = node.querySelector('td:nth-child(2)').innerText.trim() | |
| var playtime = node.querySelector('td:nth-child(3)').innerText.trim() | |
| return `${i + 1};${title};${playtime}` | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- DOWN | |
| DROP SCHEMA public CASCADE; | |
| -- UP | |
| CREATE SCHEMA public; | |
| GRANT ALL ON SCHEMA public TO postgres; | |
| GRANT ALL ON SCHEMA public TO public; | |
| -- Equipment enum |
NewerOlder