()
| 102 | } |
| 103 | |
| 104 | func (s Schema) MySQL() (string, string, string) { |
| 105 | return strings.Replace(s.create, `"`, "`", -1), s.drop, `now()` |
| 106 | } |
| 107 | |
| 108 | func (s Schema) Sqlite3() (string, string, string) { |
| 109 | return strings.Replace(s.create, `now()`, `CURRENT_TIMESTAMP`, -1), s.drop, `CURRENT_TIMESTAMP` |
no outgoing calls
no test coverage detected