Commit 3748794 1 parent 4e771e8 commit 3748794 Copy full SHA for 3748794
File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -731,20 +731,20 @@ CREATE INDEX smtp_messageid ON imap(rfc724_mid);
731
731
. await ?;
732
732
}
733
733
734
- // Add is_bot column to contacts table with default false.
735
734
if dbversion < 102 {
736
735
sql. execute_migration (
737
- "ALTER TABLE contacts ADD COLUMN is_bot INTEGER NOT NULL DEFAULT 0" ,
736
+ "CREATE TABLE download (
737
+ msg_id INTEGER NOT NULL -- id of the message stub in msgs table
738
+ )" ,
738
739
102 ,
739
740
)
740
741
. await ?;
741
742
}
742
743
744
+ // Add is_bot column to contacts table with default false.
743
745
if dbversion < 103 {
744
746
sql. execute_migration (
745
- "CREATE TABLE download (
746
- msg_id INTEGER NOT NULL -- id of the message stub in msgs table
747
- )" ,
747
+ "ALTER TABLE contacts ADD COLUMN is_bot INTEGER NOT NULL DEFAULT 0" ,
748
748
103 ,
749
749
)
750
750
. await ?;
You can’t perform that action at this time.
0 commit comments