You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
INSERT INTO announced_from VALUES (98, 'IETF Executive Director <exec-director@ietf.org>', NULL);
21
26
INSERT INTO announced_to VALUES (9, 'Unknown', NULL);
22
27
INSERT INTO area_status VALUES (3, 'Unknown');
23
28
29
+
--
30
+
-- Date-based views require all dates to be reasonable.
31
+
-- These two rows had bad dates.
24
32
UPDATE ipr_detail SET submitted_date="2000-09-15"WHERE ipr_id=170;
25
33
UPDATE ipr_detail SET submitted_date="2004-08-30"WHERE ipr_id=418;
26
34
35
+
--
36
+
-- ref_doc_states_new had UTF-8 in the document_desc.
27
37
UPDATE ref_doc_states_new SET document_desc='A formal request has been made to advance/publish the document, following the procedures in Section 7.5 of RFC 2418. The request could be from a WG chair, from an individual through the RFC Editor, etc. (The Secretariat (iesg-secretary@ietf.org) is copied on these requests to ensure that the request makes it into the ID tracker.) A document in this state has not (yet) been reviewed by an AD nor has any official action been taken on it yet (other than to note that its publication has been requested.'WHERE document_state_id=10;
28
38
39
+
--
40
+
--
41
+
-- django wants FK pointers to nowhere to be NULL;
42
+
-- the current schema uses pointers to nonexistent rows.
0 commit comments