Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 1x | 'use strict'; module.exports = { async up (next) { await this.query(`CREATE TABLE chatlogs ( senderId varchar(73), pageId varchar(73), time varchar(73), request nvarchar(max), responses nvarchar(max), metadata nvarchar(max), timestamp bigint, flag varchar(3), err varchar(73) )`); await this.query('CREATE INDEX page_sender_timestamp ON chatlogs (pageId, senderId, timestamp DESC)'); await this.query('CREATE INDEX sender ON chatlogs (senderId)'); await this.query('CREATE INDEX flag ON chatlogs (flag, timestamp DESC)'); next(); }, async down (next) { await this.query('DROP TABLE IF EXISTS chatlogs'); next(); } }; |