|
|
|
@ -2090,7 +2090,7 @@ class SqliteClient extends KnexClient {
|
|
|
|
|
addNewColumnQuery += |
|
|
|
|
n.dtxp && n.dt !== 'text' ? `(${this.genRaw(n.dtxp)})` : ''; |
|
|
|
|
addNewColumnQuery += n.cdf |
|
|
|
|
? ` DEFAULT ${this.sanitiseDefaultValue(n.cdf)}` |
|
|
|
|
? ` DEFAULT ${this.genValue(n.cdf)}` |
|
|
|
|
: !n.rqd |
|
|
|
|
? ' ' |
|
|
|
|
: ` DEFAULT ''`; |
|
|
|
@ -2122,7 +2122,7 @@ class SqliteClient extends KnexClient {
|
|
|
|
|
shouldSanitize, |
|
|
|
|
); |
|
|
|
|
query += n.dtxp && n.dt !== 'text' ? `(${this.genRaw(n.dtxp)})` : ''; |
|
|
|
|
query += n.cdf ? ` DEFAULT ${this.sanitiseDefaultValue(n.cdf)}` : ' '; |
|
|
|
|
query += n.cdf ? ` DEFAULT ${this.genValue(n.cdf)}` : ' '; |
|
|
|
|
query += n.rqd ? ` NOT NULL` : ' '; |
|
|
|
|
} else if (change === 1) { |
|
|
|
|
shouldSanitize = true; |
|
|
|
@ -2133,7 +2133,7 @@ class SqliteClient extends KnexClient {
|
|
|
|
|
); |
|
|
|
|
query += n.dtxp && n.dt !== 'text' ? `(${this.genRaw(n.dtxp)})` : ''; |
|
|
|
|
query += n.cdf |
|
|
|
|
? ` DEFAULT ${this.sanitiseDefaultValue(n.cdf)}` |
|
|
|
|
? ` DEFAULT ${this.genValue(n.cdf)}` |
|
|
|
|
: !n.rqd |
|
|
|
|
? ' ' |
|
|
|
|
: ` DEFAULT ''`; |
|
|
|
|