Skip to content

Commit fa2b10a

Browse files
committed
Fix previous commit
1 parent dc8708c commit fa2b10a

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

content/archive/26.03/upgrade.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ If using MySQL, PosgreSQL or SQLite, you can enable the option [`update_sql_sche
1515
If you are using other database, or prefer to update manually the SQL schema:
1616

1717
``` sql
18-
ALTER TABLE rosterusers ADD COLUMN approved boolean NOT NULL DEFAULT false;
19-
ALTER TABLE rosterusers ADD COLUMN approved DROP DEFAULT;
20-
```
18+
ALTER TABLE rosterusers ADD COLUMN approved boolean NOT NULL DEFAULT false;
19+
ALTER TABLE rosterusers ALTER COLUMN approved DROP DEFAULT;```
20+
21+
You can ignore the second query on SQLite.
2122
2223
## <a name="sasl"></a> SASL channel binding changes
2324

0 commit comments

Comments
 (0)