localtower 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -605,3 +605,177 @@
605
605
 
606
606
 
607
607
  [2024-11-19 00:32:42 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails db:migrate in 0.74467 sec
608
+ [2024-11-19 19:51:05 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnTitleContentForPost
609
+ [2024-11-19 19:51:05 +0100] - invoke active_record
610
+ create db/migrate/20241119185105_add_column_title_content_for_post.rb
611
+
612
+ [2024-11-19 19:51:05 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnTitleContentForPost in 0.766064 sec
613
+ [2024-11-19 19:51:05 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveColumnTitleViewsForPost
614
+ [2024-11-19 19:51:06 +0100] - invoke active_record
615
+ create db/migrate/20241119185106_remove_column_title_views_for_post.rb
616
+
617
+ [2024-11-19 19:51:06 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveColumnTitleViewsForPost in 0.727494 sec
618
+ [2024-11-19 19:51:06 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RenameColumnContentForPost
619
+ [2024-11-19 19:51:07 +0100] - invoke active_record
620
+ create db/migrate/20241119185107_rename_column_content_for_post.rb
621
+
622
+ [2024-11-19 19:51:07 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RenameColumnContentForPost in 0.729766 sec
623
+ [2024-11-19 19:51:07 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration ChangeColumnTypeContentNewViewsByUsersForPost
624
+ [2024-11-19 19:51:08 +0100] - invoke active_record
625
+ create db/migrate/20241119185108_change_column_type_content_new_views_by_users_for_post.rb
626
+
627
+ [2024-11-19 19:51:08 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration ChangeColumnTypeContentNewViewsByUsersForPost in 0.747264 sec
628
+ [2024-11-19 19:51:08 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnContentContentSecondForPost
629
+ [2024-11-19 19:51:08 +0100] - invoke active_record
630
+ create db/migrate/20241119185108_add_column_content_content_second_for_post.rb
631
+
632
+ [2024-11-19 19:51:08 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnContentContentSecondForPost in 0.72538 sec
633
+ [2024-11-19 19:51:08 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration BelongsToUserForPost
634
+ [2024-11-19 19:51:09 +0100] - invoke active_record
635
+ create db/migrate/20241119185109_belongs_to_user_for_post.rb
636
+
637
+ [2024-11-19 19:51:09 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration BelongsToUserForPost in 0.736783 sec
638
+ [2024-11-19 19:51:09 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveIndexToColumnViewsByUsersForPost
639
+ [2024-11-19 19:51:10 +0100] - invoke active_record
640
+ create db/migrate/20241119185110_remove_index_to_column_views_by_users_for_post.rb
641
+
642
+ [2024-11-19 19:51:10 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveIndexToColumnViewsByUsersForPost in 0.734549 sec
643
+ [2024-11-19 19:51:10 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration DropTableForPost
644
+ [2024-11-19 19:51:11 +0100] - invoke active_record
645
+ create db/migrate/20241119185111_drop_table_for_post.rb
646
+
647
+ [2024-11-19 19:51:11 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration DropTableForPost in 0.746868 sec
648
+ [2024-11-19 19:51:11 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post title:string:index tags:string:index content:text:index likes_count:integer score:float metadata:jsonb --force
649
+ [2024-11-19 19:51:11 +0100] - invoke active_record
650
+ create db/migrate/20241119185111_create_posts.rb
651
+ create app/models/post.rb
652
+
653
+ [2024-11-19 19:51:11 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post title:string:index tags:string:index content:text:index likes_count:integer score:float metadata:jsonb --force in 0.862598 sec
654
+ [2024-11-19 19:51:11 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force
655
+ [2024-11-19 19:51:12 +0100] - invoke active_record
656
+ create db/migrate/20241119185112_create_posts.rb
657
+ create app/models/post.rb
658
+
659
+ [2024-11-19 19:51:12 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force in 0.862241 sec
660
+ [2024-11-19 19:51:12 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force
661
+ [2024-11-19 19:51:13 +0100] - invoke active_record
662
+ create db/migrate/20241119185113_create_posts.rb
663
+ create app/models/post.rb
664
+
665
+ [2024-11-19 19:51:13 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force in 0.856765 sec
666
+ [2024-11-19 19:51:27 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnTitleContentForPost
667
+ [2024-11-19 19:51:28 +0100] - invoke active_record
668
+ create db/migrate/20241119185128_add_column_title_content_for_post.rb
669
+
670
+ [2024-11-19 19:51:28 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnTitleContentForPost in 0.740028 sec
671
+ [2024-11-19 19:51:28 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveColumnTitleViewsForPost
672
+ [2024-11-19 19:51:29 +0100] - invoke active_record
673
+ create db/migrate/20241119185129_remove_column_title_views_for_post.rb
674
+
675
+ [2024-11-19 19:51:29 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveColumnTitleViewsForPost in 0.737554 sec
676
+ [2024-11-19 19:51:29 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RenameColumnContentForPost
677
+ [2024-11-19 19:51:30 +0100] - invoke active_record
678
+ create db/migrate/20241119185130_rename_column_content_for_post.rb
679
+
680
+ [2024-11-19 19:51:30 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RenameColumnContentForPost in 0.747009 sec
681
+ [2024-11-19 19:51:30 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration ChangeColumnTypeContentNewViewsByUsersForPost
682
+ [2024-11-19 19:51:30 +0100] - invoke active_record
683
+ create db/migrate/20241119185130_change_column_type_content_new_views_by_users_for_post.rb
684
+
685
+ [2024-11-19 19:51:30 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration ChangeColumnTypeContentNewViewsByUsersForPost in 0.732737 sec
686
+ [2024-11-19 19:51:30 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnContentContentSecondForPost
687
+ [2024-11-19 19:51:31 +0100] - invoke active_record
688
+ create db/migrate/20241119185131_add_column_content_content_second_for_post.rb
689
+
690
+ [2024-11-19 19:51:31 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnContentContentSecondForPost in 0.730374 sec
691
+ [2024-11-19 19:51:31 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration BelongsToUserForPost
692
+ [2024-11-19 19:51:32 +0100] - invoke active_record
693
+ create db/migrate/20241119185132_belongs_to_user_for_post.rb
694
+
695
+ [2024-11-19 19:51:32 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration BelongsToUserForPost in 0.736758 sec
696
+ [2024-11-19 19:51:32 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveIndexToColumnViewsByUsersForPost
697
+ [2024-11-19 19:51:33 +0100] - invoke active_record
698
+ create db/migrate/20241119185133_remove_index_to_column_views_by_users_for_post.rb
699
+
700
+ [2024-11-19 19:51:33 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveIndexToColumnViewsByUsersForPost in 0.726656 sec
701
+ [2024-11-19 19:51:33 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration DropTableForPost
702
+ [2024-11-19 19:51:33 +0100] - invoke active_record
703
+ create db/migrate/20241119185133_drop_table_for_post.rb
704
+
705
+ [2024-11-19 19:51:33 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration DropTableForPost in 0.727065 sec
706
+ [2024-11-19 19:51:33 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post title:string:index tags:string:index content:text:index likes_count:integer score:float metadata:jsonb --force
707
+ [2024-11-19 19:51:34 +0100] - invoke active_record
708
+ create db/migrate/20241119185134_create_posts.rb
709
+ create app/models/post.rb
710
+
711
+ [2024-11-19 19:51:34 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post title:string:index tags:string:index content:text:index likes_count:integer score:float metadata:jsonb --force in 0.870209 sec
712
+ [2024-11-19 19:51:34 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force
713
+ [2024-11-19 19:51:35 +0100] - invoke active_record
714
+ create db/migrate/20241119185135_create_posts.rb
715
+ create app/models/post.rb
716
+
717
+ [2024-11-19 19:51:35 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force in 0.87382 sec
718
+ [2024-11-19 19:51:35 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force
719
+ [2024-11-19 19:51:36 +0100] - invoke active_record
720
+ create db/migrate/20241119185136_create_posts.rb
721
+ create app/models/post.rb
722
+
723
+ [2024-11-19 19:51:36 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force in 0.898173 sec
724
+ [2024-11-20 11:33:34 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnTitleContentForPost
725
+ [2024-11-20 11:33:35 +0100] - invoke active_record
726
+ create db/migrate/20241120103335_add_column_title_content_for_post.rb
727
+
728
+ [2024-11-20 11:33:35 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnTitleContentForPost in 0.780387 sec
729
+ [2024-11-20 11:33:35 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveColumnTitleViewsForPost
730
+ [2024-11-20 11:33:35 +0100] - invoke active_record
731
+ create db/migrate/20241120103335_remove_column_title_views_for_post.rb
732
+
733
+ [2024-11-20 11:33:35 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveColumnTitleViewsForPost in 0.7576 sec
734
+ [2024-11-20 11:33:35 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RenameColumnContentForPost
735
+ [2024-11-20 11:33:36 +0100] - invoke active_record
736
+ create db/migrate/20241120103336_rename_column_content_for_post.rb
737
+
738
+ [2024-11-20 11:33:36 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RenameColumnContentForPost in 0.736252 sec
739
+ [2024-11-20 11:33:36 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration ChangeColumnTypeContentNewViewsByUsersForPost
740
+ [2024-11-20 11:33:37 +0100] - invoke active_record
741
+ create db/migrate/20241120103337_change_column_type_content_new_views_by_users_for_post.rb
742
+
743
+ [2024-11-20 11:33:37 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration ChangeColumnTypeContentNewViewsByUsersForPost in 0.732607 sec
744
+ [2024-11-20 11:33:37 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnContentContentSecondForPost
745
+ [2024-11-20 11:33:38 +0100] - invoke active_record
746
+ create db/migrate/20241120103338_add_column_content_content_second_for_post.rb
747
+
748
+ [2024-11-20 11:33:38 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration AddColumnContentContentSecondForPost in 0.728295 sec
749
+ [2024-11-20 11:33:38 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration BelongsToUserForPost
750
+ [2024-11-20 11:33:39 +0100] - invoke active_record
751
+ create db/migrate/20241120103339_belongs_to_user_for_post.rb
752
+
753
+ [2024-11-20 11:33:39 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration BelongsToUserForPost in 0.910221 sec
754
+ [2024-11-20 11:33:39 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveIndexToColumnViewsByUsersForPost
755
+ [2024-11-20 11:33:39 +0100] - invoke active_record
756
+ create db/migrate/20241120103339_remove_index_to_column_views_by_users_for_post.rb
757
+
758
+ [2024-11-20 11:33:39 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration RemoveIndexToColumnViewsByUsersForPost in 0.801383 sec
759
+ [2024-11-20 11:33:39 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration DropTableForPost
760
+ [2024-11-20 11:33:40 +0100] - invoke active_record
761
+ create db/migrate/20241120103340_drop_table_for_post.rb
762
+
763
+ [2024-11-20 11:33:40 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails g migration DropTableForPost in 0.77272 sec
764
+ [2024-11-20 11:33:40 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post title:string:index tags:string:index content:text:index likes_count:integer score:float metadata:jsonb --force
765
+ [2024-11-20 11:33:41 +0100] - invoke active_record
766
+ create db/migrate/20241120103341_create_posts.rb
767
+ create app/models/post.rb
768
+
769
+ [2024-11-20 11:33:41 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post title:string:index tags:string:index content:text:index likes_count:integer score:float metadata:jsonb --force in 0.87574 sec
770
+ [2024-11-20 11:33:41 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force
771
+ [2024-11-20 11:33:42 +0100] - invoke active_record
772
+ create db/migrate/20241120103342_create_posts.rb
773
+ create app/models/post.rb
774
+
775
+ [2024-11-20 11:33:42 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force in 0.854854 sec
776
+ [2024-11-20 11:33:42 +0100] - DOING...: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force
777
+ [2024-11-20 11:33:43 +0100] - invoke active_record
778
+ create db/migrate/20241120103343_create_posts.rb
779
+ create app/models/post.rb
780
+
781
+ [2024-11-20 11:33:43 +0100] - DONE: cd "/Users/damln/Work/localtower/spec/dummy" && bundle exec rails generate model Post user:references --force in 0.898272 sec
@@ -714,3 +714,432 @@
714
714
   (0.4ms) select * from schema_migrations;
715
715
   (0.5ms) select * from schema_migrations;
716
716
   (0.5ms) select * from schema_migrations;
717
+  (4.4ms) select * from schema_migrations;
718
+  (1.7ms) select * from schema_migrations;
719
+  (1.4ms) select * from schema_migrations;
720
+  (2.2ms) select * from schema_migrations;
721
+  (0.7ms) select * from schema_migrations;
722
+  (0.6ms) select * from schema_migrations;
723
+  (0.7ms) select * from schema_migrations;
724
+  (0.7ms) select * from schema_migrations;
725
+  (0.6ms) select * from schema_migrations;
726
+  (0.6ms) select * from schema_migrations;
727
+  (0.6ms) select * from schema_migrations;
728
+  (0.6ms) select * from schema_migrations;
729
+  (0.9ms) select * from schema_migrations;
730
+  (0.5ms) select * from schema_migrations;
731
+  (1.8ms) select * from schema_migrations;
732
+  (1.2ms) select * from schema_migrations;
733
+  (0.6ms) select * from schema_migrations;
734
+  (1.8ms) select * from schema_migrations;
735
+  (0.7ms) select * from schema_migrations;
736
+  (1.6ms) select * from schema_migrations;
737
+  (1.3ms) select * from schema_migrations;
738
+  (1.1ms) select * from schema_migrations;
739
+  (0.7ms) select * from schema_migrations;
740
+  (0.7ms) select * from schema_migrations;
741
+  (0.6ms) select * from schema_migrations;
742
+  (1.3ms) select * from schema_migrations;
743
+  (1.1ms) select * from schema_migrations;
744
+  (1.1ms) select * from schema_migrations;
745
+  (0.9ms) select * from schema_migrations;
746
+  (0.8ms) select * from schema_migrations;
747
+  (0.7ms) select * from schema_migrations;
748
+  (0.6ms) select * from schema_migrations;
749
+  (0.6ms) select * from schema_migrations;
750
+  (0.8ms) select * from schema_migrations;
751
+  (0.7ms) select * from schema_migrations;
752
+  (0.6ms) select * from schema_migrations;
753
+  (0.6ms) select * from schema_migrations;
754
+  (0.5ms) select * from schema_migrations;
755
+  (0.3ms) select * from schema_migrations;
756
+  (1.4ms) select * from schema_migrations;
757
+  (0.6ms) select * from schema_migrations;
758
+  (2.2ms) select * from schema_migrations;
759
+  (0.5ms) select * from schema_migrations;
760
+  (1.6ms) select * from schema_migrations;
761
+  (0.9ms) select * from schema_migrations;
762
+  (1.4ms) select * from schema_migrations;
763
+  (0.9ms) select * from schema_migrations;
764
+  (0.8ms) select * from schema_migrations;
765
+  (0.6ms) select * from schema_migrations;
766
+  (0.6ms) select * from schema_migrations;
767
+  (0.8ms) select * from schema_migrations;
768
+  (0.6ms) select * from schema_migrations;
769
+  (0.6ms) select * from schema_migrations;
770
+  (0.6ms) select * from schema_migrations;
771
+  (0.6ms) select * from schema_migrations;
772
+  (0.7ms) select * from schema_migrations;
773
+  (0.6ms) select * from schema_migrations;
774
+  (0.6ms) select * from schema_migrations;
775
+  (0.6ms) select * from schema_migrations;
776
+  (0.6ms) select * from schema_migrations;
777
+  (0.6ms) select * from schema_migrations;
778
+  (0.5ms) select * from schema_migrations;
779
+  (0.5ms) select * from schema_migrations;
780
+  (6.0ms) select * from schema_migrations;
781
+  (1.0ms) select * from schema_migrations;
782
+  (0.6ms) select * from schema_migrations;
783
+  (0.5ms) select * from schema_migrations;
784
+  (0.4ms) select * from schema_migrations;
785
+  (0.4ms) select * from schema_migrations;
786
+  (0.4ms) select * from schema_migrations;
787
+  (0.4ms) select * from schema_migrations;
788
+  (0.4ms) select * from schema_migrations;
789
+  (0.4ms) select * from schema_migrations;
790
+  (0.4ms) select * from schema_migrations;
791
+  (0.5ms) select * from schema_migrations;
792
+  (0.3ms) select * from schema_migrations;
793
+  (0.3ms) select * from schema_migrations;
794
+  (0.3ms) select * from schema_migrations;
795
+  (0.3ms) select * from schema_migrations;
796
+  (0.2ms) select * from schema_migrations;
797
+  (0.3ms) select * from schema_migrations;
798
+  (0.3ms) select * from schema_migrations;
799
+  (0.2ms) select * from schema_migrations;
800
+  (0.3ms) select * from schema_migrations;
801
+  (0.3ms) select * from schema_migrations;
802
+  (0.3ms) select * from schema_migrations;
803
+  (0.3ms) select * from schema_migrations;
804
+  (0.3ms) select * from schema_migrations;
805
+  (0.3ms) select * from schema_migrations;
806
+  (0.3ms) select * from schema_migrations;
807
+  (0.3ms) select * from schema_migrations;
808
+  (0.3ms) select * from schema_migrations;
809
+  (1.1ms) select * from schema_migrations;
810
+  (1.3ms) select * from schema_migrations;
811
+  (1.3ms) select * from schema_migrations;
812
+  (1.1ms) select * from schema_migrations;
813
+  (1.4ms) select * from schema_migrations;
814
+  (0.8ms) select * from schema_migrations;
815
+  (0.6ms) select * from schema_migrations;
816
+  (0.8ms) select * from schema_migrations;
817
+  (1.0ms) select * from schema_migrations;
818
+  (0.4ms) select * from schema_migrations;
819
+  (0.7ms) select * from schema_migrations;
820
+  (1.1ms) select * from schema_migrations;
821
+  (0.7ms) select * from schema_migrations;
822
+  (0.8ms) select * from schema_migrations;
823
+  (0.6ms) select * from schema_migrations;
824
+  (0.6ms) select * from schema_migrations;
825
+  (0.6ms) select * from schema_migrations;
826
+  (0.5ms) select * from schema_migrations;
827
+  (0.6ms) select * from schema_migrations;
828
+  (0.5ms) select * from schema_migrations;
829
+  (0.5ms) select * from schema_migrations;
830
+  (0.5ms) select * from schema_migrations;
831
+  (0.5ms) select * from schema_migrations;
832
+  (0.5ms) select * from schema_migrations;
833
+  (0.3ms) select * from schema_migrations;
834
+  (0.5ms) select * from schema_migrations;
835
+  (0.5ms) select * from schema_migrations;
836
+  (0.6ms) select * from schema_migrations;
837
+  (0.8ms) select * from schema_migrations;
838
+  (0.7ms) select * from schema_migrations;
839
+  (0.4ms) select * from schema_migrations;
840
+  (0.7ms) select * from schema_migrations;
841
+  (0.7ms) select * from schema_migrations;
842
+  (0.9ms) select * from schema_migrations;
843
+  (0.5ms) select * from schema_migrations;
844
+  (0.5ms) select * from schema_migrations;
845
+  (0.5ms) select * from schema_migrations;
846
+  (0.4ms) select * from schema_migrations;
847
+  (0.3ms) select * from schema_migrations;
848
+  (0.3ms) select * from schema_migrations;
849
+  (0.8ms) select * from schema_migrations;
850
+  (0.5ms) select * from schema_migrations;
851
+  (0.2ms) select * from schema_migrations;
852
+  (0.3ms) select * from schema_migrations;
853
+  (0.3ms) select * from schema_migrations;
854
+  (0.3ms) select * from schema_migrations;
855
+  (0.3ms) select * from schema_migrations;
856
+  (0.3ms) select * from schema_migrations;
857
+  (0.4ms) select * from schema_migrations;
858
+  (0.3ms) select * from schema_migrations;
859
+  (0.2ms) select * from schema_migrations;
860
+  (4.3ms) select * from schema_migrations;
861
+  (1.4ms) select * from schema_migrations;
862
+  (1.3ms) select * from schema_migrations;
863
+  (3.0ms) select * from schema_migrations;
864
+  (3.1ms) select * from schema_migrations;
865
+  (1.4ms) select * from schema_migrations;
866
+  (1.1ms) select * from schema_migrations;
867
+  (0.9ms) select * from schema_migrations;
868
+  (1.0ms) select * from schema_migrations;
869
+  (0.8ms) select * from schema_migrations;
870
+  (0.8ms) select * from schema_migrations;
871
+  (0.7ms) select * from schema_migrations;
872
+  (0.6ms) select * from schema_migrations;
873
+  (0.4ms) select * from schema_migrations;
874
+  (1.2ms) select * from schema_migrations;
875
+  (0.8ms) select * from schema_migrations;
876
+  (0.4ms) select * from schema_migrations;
877
+  (1.2ms) select * from schema_migrations;
878
+  (0.3ms) select * from schema_migrations;
879
+  (1.6ms) select * from schema_migrations;
880
+  (1.4ms) select * from schema_migrations;
881
+  (1.5ms) select * from schema_migrations;
882
+  (0.9ms) select * from schema_migrations;
883
+  (0.8ms) select * from schema_migrations;
884
+  (0.6ms) select * from schema_migrations;
885
+  (2.3ms) select * from schema_migrations;
886
+  (1.1ms) select * from schema_migrations;
887
+  (0.9ms) select * from schema_migrations;
888
+  (0.7ms) select * from schema_migrations;
889
+  (0.7ms) select * from schema_migrations;
890
+  (0.6ms) select * from schema_migrations;
891
+  (0.6ms) select * from schema_migrations;
892
+  (0.6ms) select * from schema_migrations;
893
+  (0.5ms) select * from schema_migrations;
894
+  (0.5ms) select * from schema_migrations;
895
+  (0.6ms) select * from schema_migrations;
896
+  (0.5ms) select * from schema_migrations;
897
+  (0.5ms) select * from schema_migrations;
898
+  (0.5ms) select * from schema_migrations;
899
+  (1.4ms) select * from schema_migrations;
900
+  (0.6ms) select * from schema_migrations;
901
+  (2.3ms) select * from schema_migrations;
902
+  (0.4ms) select * from schema_migrations;
903
+  (1.5ms) select * from schema_migrations;
904
+  (1.1ms) select * from schema_migrations;
905
+  (1.2ms) select * from schema_migrations;
906
+  (0.8ms) select * from schema_migrations;
907
+  (0.8ms) select * from schema_migrations;
908
+  (0.5ms) select * from schema_migrations;
909
+  (0.5ms) select * from schema_migrations;
910
+  (0.5ms) select * from schema_migrations;
911
+  (0.9ms) select * from schema_migrations;
912
+  (0.6ms) select * from schema_migrations;
913
+  (0.6ms) select * from schema_migrations;
914
+  (0.8ms) select * from schema_migrations;
915
+  (0.8ms) select * from schema_migrations;
916
+  (0.6ms) select * from schema_migrations;
917
+  (0.5ms) select * from schema_migrations;
918
+  (0.5ms) select * from schema_migrations;
919
+  (0.5ms) select * from schema_migrations;
920
+  (0.5ms) select * from schema_migrations;
921
+  (0.5ms) select * from schema_migrations;
922
+  (0.5ms) select * from schema_migrations;
923
+  (0.5ms) select * from schema_migrations;
924
+  (1.2ms) select * from schema_migrations;
925
+  (0.5ms) select * from schema_migrations;
926
+  (0.5ms) select * from schema_migrations;
927
+  (0.6ms) select * from schema_migrations;
928
+  (0.5ms) select * from schema_migrations;
929
+  (0.5ms) select * from schema_migrations;
930
+  (0.4ms) select * from schema_migrations;
931
+  (0.6ms) select * from schema_migrations;
932
+  (0.5ms) select * from schema_migrations;
933
+  (0.4ms) select * from schema_migrations;
934
+  (0.4ms) select * from schema_migrations;
935
+  (0.4ms) select * from schema_migrations;
936
+  (0.4ms) select * from schema_migrations;
937
+  (0.4ms) select * from schema_migrations;
938
+  (0.5ms) select * from schema_migrations;
939
+  (0.3ms) select * from schema_migrations;
940
+  (0.3ms) select * from schema_migrations;
941
+  (0.3ms) select * from schema_migrations;
942
+  (0.3ms) select * from schema_migrations;
943
+  (0.3ms) select * from schema_migrations;
944
+  (0.3ms) select * from schema_migrations;
945
+  (0.3ms) select * from schema_migrations;
946
+  (0.3ms) select * from schema_migrations;
947
+  (0.3ms) select * from schema_migrations;
948
+  (0.3ms) select * from schema_migrations;
949
+  (0.3ms) select * from schema_migrations;
950
+  (0.3ms) select * from schema_migrations;
951
+  (0.3ms) select * from schema_migrations;
952
+  (1.4ms) select * from schema_migrations;
953
+  (1.0ms) select * from schema_migrations;
954
+  (1.2ms) select * from schema_migrations;
955
+  (1.0ms) select * from schema_migrations;
956
+  (0.7ms) select * from schema_migrations;
957
+  (0.6ms) select * from schema_migrations;
958
+  (0.5ms) select * from schema_migrations;
959
+  (1.2ms) select * from schema_migrations;
960
+  (1.0ms) select * from schema_migrations;
961
+  (0.5ms) select * from schema_migrations;
962
+  (0.8ms) select * from schema_migrations;
963
+  (0.8ms) select * from schema_migrations;
964
+  (1.1ms) select * from schema_migrations;
965
+  (0.7ms) select * from schema_migrations;
966
+  (0.7ms) select * from schema_migrations;
967
+  (0.8ms) select * from schema_migrations;
968
+  (0.8ms) select * from schema_migrations;
969
+  (0.7ms) select * from schema_migrations;
970
+  (0.9ms) select * from schema_migrations;
971
+  (1.1ms) select * from schema_migrations;
972
+  (3.2ms) select * from schema_migrations;
973
+  (4.9ms) select * from schema_migrations;
974
+  (1.5ms) select * from schema_migrations;
975
+  (0.4ms) select * from schema_migrations;
976
+  (0.2ms) select * from schema_migrations;
977
+  (0.3ms) select * from schema_migrations;
978
+  (0.3ms) select * from schema_migrations;
979
+  (0.2ms) select * from schema_migrations;
980
+  (0.5ms) select * from schema_migrations;
981
+  (0.3ms) select * from schema_migrations;
982
+  (0.6ms) select * from schema_migrations;
983
+  (0.5ms) select * from schema_migrations;
984
+  (1.0ms) select * from schema_migrations;
985
+  (0.7ms) select * from schema_migrations;
986
+  (0.7ms) select * from schema_migrations;
987
+  (0.5ms) select * from schema_migrations;
988
+  (0.7ms) select * from schema_migrations;
989
+  (0.4ms) select * from schema_migrations;
990
+  (0.3ms) select * from schema_migrations;
991
+  (0.4ms) select * from schema_migrations;
992
+  (6.6ms) select * from schema_migrations;
993
+  (0.7ms) select * from schema_migrations;
994
+  (0.3ms) select * from schema_migrations;
995
+  (0.3ms) select * from schema_migrations;
996
+  (0.4ms) select * from schema_migrations;
997
+  (0.4ms) select * from schema_migrations;
998
+  (0.3ms) select * from schema_migrations;
999
+  (0.4ms) select * from schema_migrations;
1000
+  (0.3ms) select * from schema_migrations;
1001
+  (0.3ms) select * from schema_migrations;
1002
+  (0.4ms) select * from schema_migrations;
1003
+  (0.4ms) select * from schema_migrations;
1004
+  (1.0ms) select * from schema_migrations;
1005
+  (0.8ms) select * from schema_migrations;
1006
+  (0.7ms) select * from schema_migrations;
1007
+  (0.8ms) select * from schema_migrations;
1008
+  (0.6ms) select * from schema_migrations;
1009
+  (0.6ms) select * from schema_migrations;
1010
+  (0.6ms) select * from schema_migrations;
1011
+  (0.5ms) select * from schema_migrations;
1012
+  (0.7ms) select * from schema_migrations;
1013
+  (0.6ms) select * from schema_migrations;
1014
+  (0.5ms) select * from schema_migrations;
1015
+  (0.6ms) select * from schema_migrations;
1016
+  (0.3ms) select * from schema_migrations;
1017
+  (1.1ms) select * from schema_migrations;
1018
+  (1.1ms) select * from schema_migrations;
1019
+  (0.3ms) select * from schema_migrations;
1020
+  (1.6ms) select * from schema_migrations;
1021
+  (0.8ms) select * from schema_migrations;
1022
+  (1.6ms) select * from schema_migrations;
1023
+  (0.7ms) select * from schema_migrations;
1024
+  (0.5ms) select * from schema_migrations;
1025
+  (0.5ms) select * from schema_migrations;
1026
+  (0.8ms) select * from schema_migrations;
1027
+  (0.4ms) select * from schema_migrations;
1028
+  (1.5ms) select * from schema_migrations;
1029
+  (0.6ms) select * from schema_migrations;
1030
+  (0.7ms) select * from schema_migrations;
1031
+  (0.5ms) select * from schema_migrations;
1032
+  (0.7ms) select * from schema_migrations;
1033
+  (0.7ms) select * from schema_migrations;
1034
+  (0.5ms) select * from schema_migrations;
1035
+  (0.5ms) select * from schema_migrations;
1036
+  (0.7ms) select * from schema_migrations;
1037
+  (0.6ms) select * from schema_migrations;
1038
+  (0.6ms) select * from schema_migrations;
1039
+  (0.6ms) select * from schema_migrations;
1040
+  (0.6ms) select * from schema_migrations;
1041
+  (0.4ms) select * from schema_migrations;
1042
+  (2.1ms) select * from schema_migrations;
1043
+  (0.7ms) select * from schema_migrations;
1044
+  (7.3ms) select * from schema_migrations;
1045
+  (0.6ms) select * from schema_migrations;
1046
+  (1.3ms) select * from schema_migrations;
1047
+  (0.7ms) select * from schema_migrations;
1048
+  (0.7ms) select * from schema_migrations;
1049
+  (0.5ms) select * from schema_migrations;
1050
+  (1.4ms) select * from schema_migrations;
1051
+  (1.5ms) select * from schema_migrations;
1052
+  (1.0ms) select * from schema_migrations;
1053
+  (0.5ms) select * from schema_migrations;
1054
+  (1.4ms) select * from schema_migrations;
1055
+  (0.5ms) select * from schema_migrations;
1056
+  (0.6ms) select * from schema_migrations;
1057
+  (0.5ms) select * from schema_migrations;
1058
+  (1.3ms) select * from schema_migrations;
1059
+  (1.3ms) select * from schema_migrations;
1060
+  (1.4ms) select * from schema_migrations;
1061
+  (1.9ms) select * from schema_migrations;
1062
+  (1.7ms) select * from schema_migrations;
1063
+  (0.9ms) select * from schema_migrations;
1064
+  (2.5ms) select * from schema_migrations;
1065
+  (0.8ms) select * from schema_migrations;
1066
+  (0.6ms) select * from schema_migrations;
1067
+  (1.5ms) select * from schema_migrations;
1068
+  (0.9ms) select * from schema_migrations;
1069
+  (0.8ms) select * from schema_migrations;
1070
+  (0.8ms) select * from schema_migrations;
1071
+  (0.9ms) select * from schema_migrations;
1072
+  (0.7ms) select * from schema_migrations;
1073
+  (0.9ms) select * from schema_migrations;
1074
+  (0.7ms) select * from schema_migrations;
1075
+  (0.6ms) select * from schema_migrations;
1076
+  (0.5ms) select * from schema_migrations;
1077
+  (0.7ms) select * from schema_migrations;
1078
+  (0.5ms) select * from schema_migrations;
1079
+  (0.5ms) select * from schema_migrations;
1080
+  (0.6ms) select * from schema_migrations;
1081
+  (0.5ms) select * from schema_migrations;
1082
+  (0.5ms) select * from schema_migrations;
1083
+  (0.5ms) select * from schema_migrations;
1084
+  (0.7ms) select * from schema_migrations;
1085
+  (0.6ms) select * from schema_migrations;
1086
+  (0.5ms) select * from schema_migrations;
1087
+  (0.6ms) select * from schema_migrations;
1088
+  (0.4ms) select * from schema_migrations;
1089
+  (0.9ms) select * from schema_migrations;
1090
+  (0.7ms) select * from schema_migrations;
1091
+  (0.7ms) select * from schema_migrations;
1092
+  (0.6ms) select * from schema_migrations;
1093
+  (0.5ms) select * from schema_migrations;
1094
+  (0.8ms) select * from schema_migrations;
1095
+  (1.4ms) select * from schema_migrations;
1096
+  (0.8ms) select * from schema_migrations;
1097
+  (1.2ms) select * from schema_migrations;
1098
+  (0.7ms) select * from schema_migrations;
1099
+  (0.8ms) select * from schema_migrations;
1100
+  (0.7ms) select * from schema_migrations;
1101
+  (0.5ms) select * from schema_migrations;
1102
+  (1.1ms) select * from schema_migrations;
1103
+  (1.1ms) select * from schema_migrations;
1104
+  (0.4ms) select * from schema_migrations;
1105
+  (0.9ms) select * from schema_migrations;
1106
+  (0.8ms) select * from schema_migrations;
1107
+  (0.6ms) select * from schema_migrations;
1108
+  (0.6ms) select * from schema_migrations;
1109
+  (0.7ms) select * from schema_migrations;
1110
+  (0.7ms) select * from schema_migrations;
1111
+  (0.6ms) select * from schema_migrations;
1112
+  (0.7ms) select * from schema_migrations;
1113
+  (1.6ms) select * from schema_migrations;
1114
+  (1.4ms) select * from schema_migrations;
1115
+  (1.0ms) select * from schema_migrations;
1116
+  (1.0ms) select * from schema_migrations;
1117
+  (1.0ms) select * from schema_migrations;
1118
+  (1.2ms) select * from schema_migrations;
1119
+  (1.6ms) select * from schema_migrations;
1120
+  (1.4ms) select * from schema_migrations;
1121
+  (0.3ms) select * from schema_migrations;
1122
+  (0.2ms) select * from schema_migrations;
1123
+  (0.3ms) select * from schema_migrations;
1124
+  (0.3ms) select * from schema_migrations;
1125
+  (0.2ms) select * from schema_migrations;
1126
+  (0.3ms) select * from schema_migrations;
1127
+  (0.3ms) select * from schema_migrations;
1128
+  (0.3ms) select * from schema_migrations;
1129
+  (0.4ms) select * from schema_migrations;
1130
+  (0.3ms) select * from schema_migrations;
1131
+  (0.4ms) select * from schema_migrations;
1132
+  (0.3ms) select * from schema_migrations;
1133
+  (0.5ms) select * from schema_migrations;
1134
+  (0.4ms) select * from schema_migrations;
1135
+  (0.3ms) select * from schema_migrations;
1136
+  (0.3ms) select * from schema_migrations;
1137
+  (0.8ms) select * from schema_migrations;
1138
+  (1.4ms) select * from schema_migrations;
1139
+  (1.5ms) select * from schema_migrations;
1140
+  (2.1ms) select * from schema_migrations;
1141
+  (0.8ms) select * from schema_migrations;
1142
+  (0.8ms) select * from schema_migrations;
1143
+  (0.8ms) select * from schema_migrations;
1144
+  (0.5ms) select * from schema_migrations;
1145
+  (0.6ms) select * from schema_migrations;