Fix issue with sqlite migrations for comment_seers #503
Sem revisor
Etiquetas
Nenhum rótulo
A: API
A: Backend
A: Federation
A: Front-End
A: I18N
A: Meta
A: Security
Build
C: Bug
C: Discussion
C: Enhancement
C: Feature
Compatibility
Dependency
Design
Documentation
Good first issue
Help welcome
Mobile
Rendering
S: Blocked
S: Duplicate
S: Incomplete
S: Instance specific
S: Invalid
S: Needs Voting/Discussion
S: Ready for review
Suggestion
S: Voted on Loomio
S: Wontfix
Sem marco
Sem projeto
Sem responsáveis
1 participante
Notificações
Data limite
Não há data limite definida.
Dependências
Não há dependências definidas.
Referência: Plume/Plume#503
Carregando…
Adicionar tabela
Referência em uma nova issue
Nenhuma descrição fornecida.
Excluir branch "fix/sqlite-migrations"
Apagar um branch é permanente. Ainda que o branch apagado possa continuar a existir por um breve período antes de ser realmente apagado, isso NÃO PODE ser desfeito na maioria dos casos. Continuar?
This fixes the issue in the sqlite migrations for
comment_seers
.The temporary workaround was to change the
id
column fromid INTEGER PRIMARY KEY AUTOINCREMENT
toid INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT
.This change renames the table, creates a new table with the correct attributes, copies the old table over in the new one and deletes the old one.
Thank you. 👍
Codecov Report