verstak/internal/core/storage/migrations_011.sql.go

7 lines
171 B
Go

package storage
// migration011 — add last_pull_seq to sync_state.
const migration011 = `
ALTER TABLE sync_state ADD COLUMN last_pull_seq INTEGER NOT NULL DEFAULT 0;
`