Guest User

Untitled

a guest
Jul 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. Schema::table('clicks', function (Blueprint $table) {
  5. $table->index('user_id');
  6. $table->index(['user_id', 'date_clicked']);
  7. $table->index(['user_id', 'date_clicked', 'ip']);
  8. $table->index(['user_id', 'date_clicked', 'country']);
  9. $table->index(['user_id', 'date_clicked', 'city']);
  10. $table->index(['user_id', 'date_clicked', 'browser']);
  11. $table->index(['user_id', 'date_clicked', 'os']);
  12. });
  13.  
  14. Schema::table('links', function (Blueprint $table) {
  15. $table->index('user_id');
  16. });
  17.  
  18. Schema::table('pixels', function (Blueprint $table) {
  19. $table->index('user_id');
  20. });
Add Comment
Please, Sign In to add comment