quivr/supabase/migrations/20240318024425_rename_feedback_to_thumbs.sql
Antoine Dewez 4a341ba59d
fix(backend): migration legacy (#2370)
# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
2024-03-21 00:17:19 -07:00

4 lines
131 B
SQL

alter table "public"."chat_history" drop column "user_feedback";
alter table "public"."chat_history" add column "thumbs" boolean;