diff --git a/sql/20220920-award-granted-by.sql b/sql/20220920-award-granted-by.sql deleted file mode 100644 index 662118094..000000000 --- a/sql/20220920-award-granted-by.sql +++ /dev/null @@ -1,5 +0,0 @@ -alter table award_relationships add column granted_by int; -ALTER TABLE ONLY public.award_relationships - ADD CONSTRAINT award_granted_by_fkey FOREIGN KEY (granted_by) REFERENCES public.users(id); -update award_relationships set granted_by=1 where granted=true; -alter table award_relationships drop column granted;