File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ script:
2525 - git diff --exit-code && bundle exec rake $RAKE_TASKS
2626sudo : false
2727rvm :
28- - ' 1.9.3'
2928 - ' 2.1'
3029
3130notifications :
Original file line number Diff line number Diff line change 102102
103103 create_table "hosts" , :force => true do |t |
104104 t . datetime "created_at"
105- t . string "address" , :null => false
105+ t . string "address" , :limit => nil , :null => false
106106 t . string "mac"
107107 t . string "comm"
108108 t . string "name"
686686
687687 create_table "wmap_requests" , :force => true do |t |
688688 t . string "host"
689- t . string "address"
689+ t . string "address" , :limit => nil
690690 t . integer "port"
691691 t . integer "ssl"
692692 t . string "meth" , :limit => 32
703703
704704 create_table "wmap_targets" , :force => true do |t |
705705 t . string "host"
706- t . string "address"
706+ t . string "address" , :limit => nil
707707 t . integer "port"
708708 t . integer "ssl"
709709 t . integer "selected"
You can’t perform that action at this time.
0 commit comments