don't raise errors i data is too long

This commit is contained in:
Lee Lawlor 2014-09-22 16:36:05 -04:00
parent 6c882a317d
commit 476d3ae6b3

View File

@ -16,6 +16,7 @@
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html # http://dev.mysql.com/doc/refman/5.0/en/old-client.html
development: development:
adapter: mysql2 adapter: mysql2
strict: false
encoding: utf8 encoding: utf8
reconnect: false reconnect: false
database: thingspeak_development database: thingspeak_development
@ -30,6 +31,7 @@ development:
# Do not set this db to the same as development or production. # Do not set this db to the same as development or production.
test: test:
adapter: mysql2 adapter: mysql2
strict: false
encoding: utf8 encoding: utf8
reconnect: false reconnect: false
database: thingspeak_test database: thingspeak_test
@ -41,6 +43,7 @@ test:
production: production:
adapter: mysql2 adapter: mysql2
strict: false
encoding: utf8 encoding: utf8
reconnect: true reconnect: true
database: thingspeak_production database: thingspeak_production
@ -48,3 +51,4 @@ production:
username: root username: root
password: "notimplemented" password: "notimplemented"
socket: /var/run/mysqld/mysqld.sock socket: /var/run/mysqld/mysqld.sock