sqlboiler/bdb
Aaron L 711ecbbe8d Use pg-specific schema tables for fkey detection
- Postgres doesn't care about names for uniqueness of keys unlike mysql
  because internally it keeps "oid" values to keep track of everything.
  Unfortunately this means that the information_schema standard is
  inadequate to differentiate between constraints that are named the
  same (which isn't possible in mysql, but is in pg). Hence we have to
  dip into the pg specific schemas for better or worse.
- Fix naming of the sample schema in the README since it would fail for
  mysql due to duplicate naming.
- Mark test schema up so we don't fix the bad names so we catch
  regressions here.
- Fix #85
2017-01-06 17:53:10 -08:00
..
drivers Use pg-specific schema tables for fkey detection 2017-01-06 17:53:10 -08:00
column.go Add --tinyint-as-bool flag (v2.1.4 release) 2017-01-02 15:16:08 +10:00
column_test.go Add enum const generation 2016-11-11 01:06:30 -08:00
interface.go Fix erroneously flagged join tables 2016-09-22 00:21:12 -07:00
interface_test.go Isolate to_many from one_to_one in bdb 2016-09-17 23:11:50 -07:00
keys.go Remove COMPLETELY unused code 2016-09-22 00:21:12 -07:00
keys_test.go Added parallel to some missing tests 2016-08-18 22:29:14 +10:00
relationships.go Fix generation of self many-to-many 2016-09-22 00:21:12 -07:00
relationships_test.go Fix generation of self many-to-many 2016-09-22 00:21:12 -07:00
table.go Add function to check LastInsertId-ability 2016-09-24 15:58:37 -07:00
table_test.go Add function to check LastInsertId-ability 2016-09-24 15:58:37 -07:00