Guest User

Untitled

a guest
Sep 9th, 2021
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 3.05 KB | None | 0 0
  1. sqlite> PRAGMA table_info(wwwdj_paper_coauthors);
  2. cid         name        TYPE        notnull     dflt_value  pk
  3. ----------  ----------  ----------  ----------  ----------  ----------
  4. 0           id          INTEGER     1                       1
  5. 1           paper_id    CHAR(32)    1                       0
  6. 2           profile_id  CHAR(32)    1                       0
  7.  
  8. sqlite> PRAGMA table_info(wwwdj_paper);
  9. cid         name        TYPE        notnull     dflt_value  pk
  10. ----------  ----------  ----------  ----------  ----------  ----------
  11. 0           id          CHAR(32)    1                       1
  12. 1           NUMBER      DECIMAL     1                       0
  13. 2           published   datetime    0                       0
  14. 3           STATUS      SMALLINT    1                       0
  15. 4           associate_  CHAR(32)    0                       0
  16. 5           content_ty  CHAR(32)    0                       0
  17. 6           correspond  CHAR(32)    0                       0
  18. 7           issue_id    CHAR(32)    0                       0
  19. 8           main_edito  CHAR(32)    0                       0
  20.  
  21. sqlite> PRAGMA table_info(wwwdj_profile);
  22. cid         name        TYPE          notnull     dflt_value  pk
  23. ----------  ----------  ------------  ----------  ----------  ----------
  24. 0           password    VARCHAR(128)  1                       0
  25. 1           last_login  datetime      0                       0
  26. 2           is_superus  bool          1                       0
  27. 3           id          CHAR(32)      1                       1
  28. 4           email       VARCHAR(254)  1                       0
  29. 5           is_staff    bool          1                       0
  30. 6           is_active   bool          1                       0
  31. 7           first_name  VARCHAR(31)   1                       0
  32. 8           middle_ini  VARCHAR(31)   0                       0
  33. 9           last_name   VARCHAR(31)   1                       0
  34. 10          affiliatio  VARCHAR(160)  0                       0
  35. 11          primary_je  VARCHAR(2)    1                       0
  36. 12          secondary_  VARCHAR(2)    0                       0
  37. 13          title       VARCHAR(31)   0                       0
  38. 14          picture     VARCHAR(100)  0                       0
  39. 15          bio         text          0                       0
  40. 16          phone       VARCHAR(50)   0                       0
  41. 17          fax         VARCHAR(50)   0                       0
  42. 18          website     VARCHAR(160)  0                       0
  43. 19          cv          VARCHAR(120)  0                       0
  44. 20          street_pri  VARCHAR(255)  0                       0
  45. 21          street_sec  VARCHAR(255)  0                       0
  46. 22          city        VARCHAR(255)  0                       0
  47. 23          state       VARCHAR(255)  0                       0
  48. 24          zipcode     VARCHAR(50)   0                       0
  49. 25          country     VARCHAR(50)   0                       0
  50. 26          date_joine  datetime      1                       0
  51. 27          last_modif  datetime      1                       0
Advertisement
Add Comment
Please, Sign In to add comment