()
| 98 | } |
| 99 | |
| 100 | func (s Schema) Postgres() (string, string, string) { |
| 101 | return s.create, s.drop, `now()` |
| 102 | } |
| 103 | |
| 104 | func (s Schema) MySQL() (string, string, string) { |
| 105 | return strings.Replace(s.create, `"`, "`", -1), s.drop, `now()` |
no outgoing calls
no test coverage detected