Getting started:
Related tutorials:
| <?php | |
| /* | |
| @michaeljcalkins | |
| // When run from a controller. | |
| $migrate = SqlMigrations::ignore(['some_table']) | |
| ->convert('datebase') | |
| ->write(); | |
| **/ | |
| class SqlMigrations | |
| { |
Getting started:
Related tutorials:
| { | |
| "scripts": { | |
| "post-install-cmd": [ | |
| "php artisan optimize", | |
| "chmod -Rvc 777 app/storage", | |
| "chmod -R 777 public", | |
| "php artisan cache:clear", | |
| "php artisan migrate" | |
| ], |
| { | |
| "always_show_minimap_viewport": true, | |
| // Using ⌘-P, these files will never be shown in results | |
| "binary_file_patterns": | |
| [ | |
| "*.ai", | |
| "*.dds", | |
| "*.eot", | |
| "*.gif", | |
| "*.ico", |
Install Package Control for easy package management.
Ctrl+`
| let token = "your token"; | |
| function login(token) { | |
| setInterval(() => { | |
| document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"` | |
| }, 50); | |
| setTimeout(() => { | |
| location.reload(); | |
| }, 2500); | |
| } |