Land #4794, fix some db stuff, drop 1.9 tests

bug/bundler_fix
Tod Beardsley 2015-02-18 17:24:52 -06:00
commit 7a3bc017ff
No known key found for this signature in database
GPG Key ID: BD63D0A3EA19CAAC
2 changed files with 3 additions and 4 deletions

View File

@ -25,7 +25,6 @@ script:
- git diff --exit-code && bundle exec rake $RAKE_TASKS
sudo: false
rvm:
- '1.9.3'
- '2.1'
notifications:

View File

@ -102,7 +102,7 @@ ActiveRecord::Schema.define(:version => 20150212214222) do
create_table "hosts", :force => true do |t|
t.datetime "created_at"
t.string "address", :null => false
t.string "address", :limit => nil, :null => false
t.string "mac"
t.string "comm"
t.string "name"
@ -686,7 +686,7 @@ ActiveRecord::Schema.define(:version => 20150212214222) do
create_table "wmap_requests", :force => true do |t|
t.string "host"
t.string "address"
t.string "address", :limit => nil
t.integer "port"
t.integer "ssl"
t.string "meth", :limit => 32
@ -703,7 +703,7 @@ ActiveRecord::Schema.define(:version => 20150212214222) do
create_table "wmap_targets", :force => true do |t|
t.string "host"
t.string "address"
t.string "address", :limit => nil
t.integer "port"
t.integer "ssl"
t.integer "selected"