diesel-derive-enum 0.4.4

Derive diesel boilerplate for using enums in databases
Documentation
language: rust
rust:
  - stable
  - beta
  - nightly
services:
  - postgresql
  - mysql
before_install:
  - mysql -e 'CREATE DATABASE IF NOT EXISTS mysql_test;'
env:
  PG_TEST_DATABASE_URL=postgres://postgres@localhost:5432
  MYSQL_TEST_DATABASE_URL=mysql://travis@localhost:3306/mysql_test
script:
  - cargo test --manifest-path=tests/Cargo.toml --features="sqlite"
  - RUST_TEST_THREADS=1 cargo test --manifest-path=tests/Cargo.toml --features="postgres"
  - RUST_TEST_THREADS=1 cargo test --manifest-path=tests/Cargo.toml --features="mysql"