git .sql 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242
  1. -- phpMyAdmin SQL Dump
  2. -- version 5.1.0
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Apr 27, 2022 at 01:02 AM
  7. -- Server version: 5.7.37-0ubuntu0.18.04.1
  8. -- PHP Version: 7.2.24-0ubuntu0.18.04.11
  9. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  10. START TRANSACTION;
  11. SET time_zone = "+00:00";
  12. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  13. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  14. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  15. /*!40101 SET NAMES utf8mb4 */;
  16. --
  17. -- Database: `git`
  18. --
  19. -- --------------------------------------------------------
  20. --
  21. -- Table structure for table `access`
  22. --
  23. CREATE TABLE `access` (
  24. `id` bigint(20) NOT NULL,
  25. `user_id` bigint(20) DEFAULT NULL,
  26. `repo_id` bigint(20) DEFAULT NULL,
  27. `mode` int(11) DEFAULT NULL
  28. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  29. -- --------------------------------------------------------
  30. --
  31. -- Table structure for table `access_token`
  32. --
  33. CREATE TABLE `access_token` (
  34. `id` bigint(20) NOT NULL,
  35. `uid` bigint(20) DEFAULT NULL,
  36. `name` varchar(255) DEFAULT NULL,
  37. `sha1` varchar(40) DEFAULT NULL,
  38. `created_unix` bigint(20) DEFAULT NULL,
  39. `updated_unix` bigint(20) DEFAULT NULL
  40. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  41. -- --------------------------------------------------------
  42. --
  43. -- Table structure for table `action`
  44. --
  45. CREATE TABLE `action` (
  46. `id` bigint(20) NOT NULL,
  47. `user_id` bigint(20) DEFAULT NULL,
  48. `op_type` int(11) DEFAULT NULL,
  49. `act_user_id` bigint(20) DEFAULT NULL,
  50. `act_user_name` varchar(255) DEFAULT NULL,
  51. `repo_id` bigint(20) DEFAULT NULL,
  52. `repo_user_name` varchar(255) DEFAULT NULL,
  53. `repo_name` varchar(255) DEFAULT NULL,
  54. `ref_name` varchar(255) DEFAULT NULL,
  55. `is_private` tinyint(1) NOT NULL DEFAULT '0',
  56. `content` text,
  57. `created_unix` bigint(20) DEFAULT NULL
  58. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  59. --
  60. -- Dumping data for table `action`
  61. --
  62. INSERT INTO `action` (`id`, `user_id`, `op_type`, `act_user_id`, `act_user_name`, `repo_id`, `repo_user_name`, `repo_name`, `ref_name`, `is_private`, `content`, `created_unix`) VALUES
  63. (1, 1, 1, 1, 'admin1', 1, 'admin1', 'sh', '', 0, '', 1650520679),
  64. (2, 1, 5, 1, 'admin1', 1, 'admin1', 'sh', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"63356f1021d32243fbb0a8904c7044ddaf6fa8cf\",\"Message\":\"Add \'coffeesystem.sh\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-20T23:18:07-07:00\"}],\"CompareURL\":\"admin1/sh/compare/752762ee93104e7ead471fb9ddc22e84b6390342...63356f1021d32243fbb0a8904c7044ddaf6fa8cf\"}', 1650521887),
  65. (3, 1, 1, 1, 'admin1', 2, 'admin1', 'Coffee_MySQL', '', 0, '', 1651039547),
  66. (4, 1, 5, 1, 'admin1', 2, 'admin1', 'Coffee_MySQL', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"b9f2fcde94ad62e0e7e4c11b0eb24961231177b2\",\"Message\":\"Upload files to \'\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-26T23:05:56-07:00\"}],\"CompareURL\":\"admin1/Coffee_MySQL/compare/1891b50957fe806a2bcafeb70059da3c3fcb3d6d...b9f2fcde94ad62e0e7e4c11b0eb24961231177b2\"}', 1651039556),
  67. (7, 1, 1, 1, 'admin1', 4, 'admin1', 'CoffeeProject', '', 0, '', 1651039813),
  68. (8, 1, 5, 1, 'admin1', 4, 'admin1', 'CoffeeProject', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"cbe56b6f6ead1500dcc173c84cd798d8c6818992\",\"Message\":\"Upload files to \'app\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-26T23:10:39-07:00\"}],\"CompareURL\":\"admin1/CoffeeProject/compare/1ea43fe520a92deea883951cc3fa12a8e646320e...cbe56b6f6ead1500dcc173c84cd798d8c6818992\"}', 1651039840),
  69. (9, 1, 5, 1, 'admin1', 4, 'admin1', 'CoffeeProject', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"3c2760209ec7dbed4aaa56f864ad5b906d6a56c8\",\"Message\":\"Upload files to \'venv\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-26T23:15:51-07:00\"}],\"CompareURL\":\"admin1/CoffeeProject/compare/cbe56b6f6ead1500dcc173c84cd798d8c6818992...3c2760209ec7dbed4aaa56f864ad5b906d6a56c8\"}', 1651040154),
  70. (10, 1, 5, 1, 'admin1', 4, 'admin1', 'CoffeeProject', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"c887ee437a2b47ba55f5646c89fef6b5f61c0e1a\",\"Message\":\"Upload files to \'\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-26T23:16:06-07:00\"}],\"CompareURL\":\"admin1/CoffeeProject/compare/3c2760209ec7dbed4aaa56f864ad5b906d6a56c8...c887ee437a2b47ba55f5646c89fef6b5f61c0e1a\"}', 1651040166),
  71. (12, 1, 1, 1, 'admin1', 6, 'admin1', 'Automatically_install_files', '', 0, '', 1651040233),
  72. (13, 1, 5, 1, 'admin1', 6, 'admin1', 'Automatically_install_files', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"b8d26c605f5370a4c9f791d39917348e594d58ea\",\"Message\":\"Upload files to \'\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-26T23:17:20-07:00\"}],\"CompareURL\":\"admin1/Automatically_install_files/compare/eec9a5486ac533eed1008aa8c8a72b98c2d64b99...b8d26c605f5370a4c9f791d39917348e594d58ea\"}', 1651040240),
  73. (14, 1, 1, 1, 'admin1', 7, 'admin1', 'git_mysql', '', 0, '', 1651040262),
  74. (15, 1, 5, 1, 'admin1', 7, 'admin1', 'git_mysql', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"3d018e3e6b08d985573b81844a947689c4a567b1\",\"Message\":\"Upload files to \'\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-26T23:17:49-07:00\"}],\"CompareURL\":\"admin1/git_mysql/compare/88d4ae7841d5f22cf0bcc81ab686764384b847db...3d018e3e6b08d985573b81844a947689c4a567b1\"}', 1651040269),
  75. (16, 1, 1, 1, 'admin1', 8, 'admin1', 'gogsfile', '', 0, '', 1651040294),
  76. (17, 1, 5, 1, 'admin1', 8, 'admin1', 'gogsfile', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"151f0b4c9d9963251ead142caa4ceba6d467aaf3\",\"Message\":\"Upload files to \'\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-26T23:18:25-07:00\"}],\"CompareURL\":\"admin1/gogsfile/compare/ffa744ba6be1f942e41ddc80df14b608a40f75bf...151f0b4c9d9963251ead142caa4ceba6d467aaf3\"}', 1651040308),
  77. (18, 1, 1, 1, 'admin1', 9, 'admin1', 'mqtt_server_setting', '', 0, '', 1651040324),
  78. (19, 1, 5, 1, 'admin1', 9, 'admin1', 'mqtt_server_setting', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"ee73fea1805b6fcca1f8437cd4acc8e53bf7c1c4\",\"Message\":\"Upload files to \'\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-26T23:18:51-07:00\"}],\"CompareURL\":\"admin1/mqtt_server_setting/compare/4fcc1ba857f18409f4352e386f31ecb6964bec6c...ee73fea1805b6fcca1f8437cd4acc8e53bf7c1c4\"}', 1651040331),
  79. (20, 1, 1, 1, 'admin1', 10, 'admin1', 'proc', '', 0, '', 1651040348),
  80. (21, 1, 5, 1, 'admin1', 10, 'admin1', 'proc', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"3003ec06b47589c655fd983ad06ce86e7c0271b6\",\"Message\":\"Upload files to \'\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-26T23:19:18-07:00\"}],\"CompareURL\":\"admin1/proc/compare/21fd98d2576fa2c91043a9b8e73910e79eabae13...3003ec06b47589c655fd983ad06ce86e7c0271b6\"}', 1651040358),
  81. (22, 1, 5, 1, 'admin1', 9, 'admin1', 'mqtt_server_setting', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"cc87de17ed9f670ebb8f12258a72239e160dd1ef\",\"Message\":\"Upload files to \'\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-27T00:34:07-07:00\"}],\"CompareURL\":\"admin1/mqtt_server_setting/compare/ee73fea1805b6fcca1f8437cd4acc8e53bf7c1c4...cc87de17ed9f670ebb8f12258a72239e160dd1ef\"}', 1651044847),
  82. (23, 1, 1, 1, 'admin1', 11, 'admin1', 'BBend-Test-JWT', '', 0, '', 1651044862),
  83. (24, 1, 5, 1, 'admin1', 11, 'admin1', 'BBend-Test-JWT', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"a94199362aab3877123edf91f8559c07e48ea3fa\",\"Message\":\"Upload files to \'app\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-27T00:34:38-07:00\"}],\"CompareURL\":\"admin1/BBend-Test-JWT/compare/82fd1363f6befffb47eadae3b3f9dcd6c964965e...a94199362aab3877123edf91f8559c07e48ea3fa\"}', 1651044879),
  84. (25, 1, 5, 1, 'admin1', 11, 'admin1', 'BBend-Test-JWT', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"1f5d50bc72a6390152038e8a45f868f187347753\",\"Message\":\"Upload files to \'venv\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-27T00:37:24-07:00\"}],\"CompareURL\":\"admin1/BBend-Test-JWT/compare/a94199362aab3877123edf91f8559c07e48ea3fa...1f5d50bc72a6390152038e8a45f868f187347753\"}', 1651045048),
  85. (26, 1, 5, 1, 'admin1', 11, 'admin1', 'BBend-Test-JWT', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"2776ba5149d43abf464c57bf764273c1b486ccdf\",\"Message\":\"Upload files to \'\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-27T00:37:45-07:00\"}],\"CompareURL\":\"admin1/BBend-Test-JWT/compare/1f5d50bc72a6390152038e8a45f868f187347753...2776ba5149d43abf464c57bf764273c1b486ccdf\"}', 1651045065),
  86. (27, 1, 5, 1, 'admin1', 1, 'admin1', 'sh', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"54fced058b4b75a900788dc993c2b0cdd555499e\",\"Message\":\"Update \'coffeesystem.sh\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-27T00:53:20-07:00\"}],\"CompareURL\":\"admin1/sh/compare/63356f1021d32243fbb0a8904c7044ddaf6fa8cf...54fced058b4b75a900788dc993c2b0cdd555499e\"}', 1651046000);
  87. -- --------------------------------------------------------
  88. --
  89. -- Table structure for table `attachment`
  90. --
  91. CREATE TABLE `attachment` (
  92. `id` bigint(20) NOT NULL,
  93. `uuid` varchar(40) DEFAULT NULL,
  94. `issue_id` bigint(20) DEFAULT NULL,
  95. `comment_id` bigint(20) DEFAULT NULL,
  96. `release_id` bigint(20) DEFAULT NULL,
  97. `name` varchar(255) DEFAULT NULL,
  98. `created_unix` bigint(20) DEFAULT NULL
  99. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  100. -- --------------------------------------------------------
  101. --
  102. -- Table structure for table `collaboration`
  103. --
  104. CREATE TABLE `collaboration` (
  105. `id` bigint(20) NOT NULL,
  106. `repo_id` bigint(20) NOT NULL,
  107. `user_id` bigint(20) NOT NULL,
  108. `mode` int(11) NOT NULL DEFAULT '2'
  109. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  110. -- --------------------------------------------------------
  111. --
  112. -- Table structure for table `comment`
  113. --
  114. CREATE TABLE `comment` (
  115. `id` bigint(20) NOT NULL,
  116. `type` int(11) DEFAULT NULL,
  117. `poster_id` bigint(20) DEFAULT NULL,
  118. `issue_id` bigint(20) DEFAULT NULL,
  119. `commit_id` bigint(20) DEFAULT NULL,
  120. `line` bigint(20) DEFAULT NULL,
  121. `content` text,
  122. `created_unix` bigint(20) DEFAULT NULL,
  123. `updated_unix` bigint(20) DEFAULT NULL,
  124. `commit_sha` varchar(40) DEFAULT NULL
  125. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  126. -- --------------------------------------------------------
  127. --
  128. -- Table structure for table `deploy_key`
  129. --
  130. CREATE TABLE `deploy_key` (
  131. `id` bigint(20) NOT NULL,
  132. `key_id` bigint(20) DEFAULT NULL,
  133. `repo_id` bigint(20) DEFAULT NULL,
  134. `name` varchar(255) DEFAULT NULL,
  135. `fingerprint` varchar(255) DEFAULT NULL,
  136. `created_unix` bigint(20) DEFAULT NULL,
  137. `updated_unix` bigint(20) DEFAULT NULL
  138. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  139. -- --------------------------------------------------------
  140. --
  141. -- Table structure for table `email_address`
  142. --
  143. CREATE TABLE `email_address` (
  144. `id` bigint(20) NOT NULL,
  145. `uid` bigint(20) NOT NULL,
  146. `email` varchar(255) NOT NULL,
  147. `is_activated` tinyint(1) DEFAULT NULL
  148. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  149. -- --------------------------------------------------------
  150. --
  151. -- Table structure for table `follow`
  152. --
  153. CREATE TABLE `follow` (
  154. `id` bigint(20) NOT NULL,
  155. `user_id` bigint(20) DEFAULT NULL,
  156. `follow_id` bigint(20) DEFAULT NULL
  157. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  158. -- --------------------------------------------------------
  159. --
  160. -- Table structure for table `hook_task`
  161. --
  162. CREATE TABLE `hook_task` (
  163. `id` bigint(20) NOT NULL,
  164. `repo_id` bigint(20) DEFAULT NULL,
  165. `hook_id` bigint(20) DEFAULT NULL,
  166. `uuid` varchar(255) DEFAULT NULL,
  167. `type` int(11) DEFAULT NULL,
  168. `url` text,
  169. `signature` text,
  170. `payload_content` text,
  171. `content_type` int(11) DEFAULT NULL,
  172. `event_type` varchar(255) DEFAULT NULL,
  173. `is_ssl` tinyint(1) DEFAULT NULL,
  174. `is_delivered` tinyint(1) DEFAULT NULL,
  175. `delivered` bigint(20) DEFAULT NULL,
  176. `is_succeed` tinyint(1) DEFAULT NULL,
  177. `request_content` text,
  178. `response_content` text
  179. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  180. -- --------------------------------------------------------
  181. --
  182. -- Table structure for table `issue`
  183. --
  184. CREATE TABLE `issue` (
  185. `id` bigint(20) NOT NULL,
  186. `repo_id` bigint(20) DEFAULT NULL,
  187. `index` bigint(20) DEFAULT NULL,
  188. `poster_id` bigint(20) DEFAULT NULL,
  189. `name` varchar(255) DEFAULT NULL,
  190. `content` text,
  191. `milestone_id` bigint(20) DEFAULT NULL,
  192. `priority` int(11) DEFAULT NULL,
  193. `assignee_id` bigint(20) DEFAULT NULL,
  194. `is_closed` tinyint(1) DEFAULT NULL,
  195. `is_pull` tinyint(1) DEFAULT NULL,
  196. `num_comments` int(11) DEFAULT NULL,
  197. `deadline_unix` bigint(20) DEFAULT NULL,
  198. `created_unix` bigint(20) DEFAULT NULL,
  199. `updated_unix` bigint(20) DEFAULT NULL
  200. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  201. -- --------------------------------------------------------
  202. --
  203. -- Table structure for table `issue_label`
  204. --
  205. CREATE TABLE `issue_label` (
  206. `id` bigint(20) NOT NULL,
  207. `issue_id` bigint(20) DEFAULT NULL,
  208. `label_id` bigint(20) DEFAULT NULL
  209. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  210. -- --------------------------------------------------------
  211. --
  212. -- Table structure for table `issue_user`
  213. --
  214. CREATE TABLE `issue_user` (
  215. `id` bigint(20) NOT NULL,
  216. `uid` bigint(20) DEFAULT NULL,
  217. `issue_id` bigint(20) DEFAULT NULL,
  218. `repo_id` bigint(20) DEFAULT NULL,
  219. `milestone_id` bigint(20) DEFAULT NULL,
  220. `is_read` tinyint(1) DEFAULT NULL,
  221. `is_assigned` tinyint(1) DEFAULT NULL,
  222. `is_mentioned` tinyint(1) DEFAULT NULL,
  223. `is_poster` tinyint(1) DEFAULT NULL,
  224. `is_closed` tinyint(1) DEFAULT NULL
  225. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  226. -- --------------------------------------------------------
  227. --
  228. -- Table structure for table `label`
  229. --
  230. CREATE TABLE `label` (
  231. `id` bigint(20) NOT NULL,
  232. `repo_id` bigint(20) DEFAULT NULL,
  233. `name` varchar(255) DEFAULT NULL,
  234. `color` varchar(7) DEFAULT NULL,
  235. `num_issues` int(11) DEFAULT NULL,
  236. `num_closed_issues` int(11) DEFAULT NULL
  237. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  238. -- --------------------------------------------------------
  239. --
  240. -- Table structure for table `lfs_object`
  241. --
  242. CREATE TABLE `lfs_object` (
  243. `repo_id` bigint(20) NOT NULL,
  244. `oid` varchar(255) NOT NULL,
  245. `size` bigint(20) NOT NULL,
  246. `storage` varchar(255) NOT NULL,
  247. `created_at` datetime NOT NULL
  248. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  249. -- --------------------------------------------------------
  250. --
  251. -- Table structure for table `login_source`
  252. --
  253. CREATE TABLE `login_source` (
  254. `id` bigint(20) NOT NULL,
  255. `type` int(11) DEFAULT NULL,
  256. `name` varchar(255) DEFAULT NULL,
  257. `is_actived` tinyint(1) NOT NULL,
  258. `is_default` tinyint(1) DEFAULT NULL,
  259. `cfg` text,
  260. `created_unix` bigint(20) DEFAULT NULL,
  261. `updated_unix` bigint(20) DEFAULT NULL
  262. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  263. -- --------------------------------------------------------
  264. --
  265. -- Table structure for table `milestone`
  266. --
  267. CREATE TABLE `milestone` (
  268. `id` bigint(20) NOT NULL,
  269. `repo_id` bigint(20) DEFAULT NULL,
  270. `name` varchar(255) DEFAULT NULL,
  271. `content` text,
  272. `is_closed` tinyint(1) DEFAULT NULL,
  273. `num_issues` int(11) DEFAULT NULL,
  274. `num_closed_issues` int(11) DEFAULT NULL,
  275. `completeness` int(11) DEFAULT NULL,
  276. `deadline_unix` bigint(20) DEFAULT NULL,
  277. `closed_date_unix` bigint(20) DEFAULT NULL
  278. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  279. -- --------------------------------------------------------
  280. --
  281. -- Table structure for table `mirror`
  282. --
  283. CREATE TABLE `mirror` (
  284. `id` bigint(20) NOT NULL,
  285. `repo_id` bigint(20) DEFAULT NULL,
  286. `interval` int(11) DEFAULT NULL,
  287. `enable_prune` tinyint(1) NOT NULL DEFAULT '1',
  288. `updated_unix` bigint(20) DEFAULT NULL,
  289. `next_update_unix` bigint(20) DEFAULT NULL
  290. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  291. -- --------------------------------------------------------
  292. --
  293. -- Table structure for table `notice`
  294. --
  295. CREATE TABLE `notice` (
  296. `id` bigint(20) NOT NULL,
  297. `type` int(11) DEFAULT NULL,
  298. `description` text,
  299. `created_unix` bigint(20) DEFAULT NULL
  300. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  301. -- --------------------------------------------------------
  302. --
  303. -- Table structure for table `org_user`
  304. --
  305. CREATE TABLE `org_user` (
  306. `id` bigint(20) NOT NULL,
  307. `uid` bigint(20) DEFAULT NULL,
  308. `org_id` bigint(20) DEFAULT NULL,
  309. `is_public` tinyint(1) DEFAULT NULL,
  310. `is_owner` tinyint(1) DEFAULT NULL,
  311. `num_teams` int(11) DEFAULT NULL
  312. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  313. -- --------------------------------------------------------
  314. --
  315. -- Table structure for table `protect_branch`
  316. --
  317. CREATE TABLE `protect_branch` (
  318. `id` bigint(20) NOT NULL,
  319. `repo_id` bigint(20) DEFAULT NULL,
  320. `name` varchar(255) DEFAULT NULL,
  321. `protected` tinyint(1) DEFAULT NULL,
  322. `require_pull_request` tinyint(1) DEFAULT NULL,
  323. `enable_whitelist` tinyint(1) DEFAULT NULL,
  324. `whitelist_user_i_ds` text,
  325. `whitelist_team_i_ds` text
  326. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  327. -- --------------------------------------------------------
  328. --
  329. -- Table structure for table `protect_branch_whitelist`
  330. --
  331. CREATE TABLE `protect_branch_whitelist` (
  332. `id` bigint(20) NOT NULL,
  333. `protect_branch_id` bigint(20) DEFAULT NULL,
  334. `repo_id` bigint(20) DEFAULT NULL,
  335. `name` varchar(255) DEFAULT NULL,
  336. `user_id` bigint(20) DEFAULT NULL
  337. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  338. -- --------------------------------------------------------
  339. --
  340. -- Table structure for table `public_key`
  341. --
  342. CREATE TABLE `public_key` (
  343. `id` bigint(20) NOT NULL,
  344. `owner_id` bigint(20) NOT NULL,
  345. `name` varchar(255) NOT NULL,
  346. `fingerprint` varchar(255) NOT NULL,
  347. `content` text NOT NULL,
  348. `mode` int(11) NOT NULL DEFAULT '2',
  349. `type` int(11) NOT NULL DEFAULT '1',
  350. `created_unix` bigint(20) DEFAULT NULL,
  351. `updated_unix` bigint(20) DEFAULT NULL
  352. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  353. -- --------------------------------------------------------
  354. --
  355. -- Table structure for table `pull_request`
  356. --
  357. CREATE TABLE `pull_request` (
  358. `id` bigint(20) NOT NULL,
  359. `type` int(11) DEFAULT NULL,
  360. `status` int(11) DEFAULT NULL,
  361. `issue_id` bigint(20) DEFAULT NULL,
  362. `index` bigint(20) DEFAULT NULL,
  363. `head_repo_id` bigint(20) DEFAULT NULL,
  364. `base_repo_id` bigint(20) DEFAULT NULL,
  365. `head_user_name` varchar(255) DEFAULT NULL,
  366. `head_branch` varchar(255) DEFAULT NULL,
  367. `base_branch` varchar(255) DEFAULT NULL,
  368. `merge_base` varchar(40) DEFAULT NULL,
  369. `has_merged` tinyint(1) DEFAULT NULL,
  370. `merged_commit_id` varchar(40) DEFAULT NULL,
  371. `merger_id` bigint(20) DEFAULT NULL,
  372. `merged_unix` bigint(20) DEFAULT NULL
  373. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  374. -- --------------------------------------------------------
  375. --
  376. -- Table structure for table `release`
  377. --
  378. CREATE TABLE `release` (
  379. `id` bigint(20) NOT NULL,
  380. `repo_id` bigint(20) DEFAULT NULL,
  381. `publisher_id` bigint(20) DEFAULT NULL,
  382. `tag_name` varchar(255) DEFAULT NULL,
  383. `lower_tag_name` varchar(255) DEFAULT NULL,
  384. `target` varchar(255) DEFAULT NULL,
  385. `title` varchar(255) DEFAULT NULL,
  386. `sha1` varchar(40) DEFAULT NULL,
  387. `num_commits` bigint(20) DEFAULT NULL,
  388. `note` text,
  389. `is_draft` tinyint(1) NOT NULL DEFAULT '0',
  390. `is_prerelease` tinyint(1) DEFAULT NULL,
  391. `created_unix` bigint(20) DEFAULT NULL
  392. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  393. -- --------------------------------------------------------
  394. --
  395. -- Table structure for table `repository`
  396. --
  397. CREATE TABLE `repository` (
  398. `id` bigint(20) NOT NULL,
  399. `owner_id` bigint(20) DEFAULT NULL,
  400. `lower_name` varchar(255) NOT NULL,
  401. `name` varchar(255) NOT NULL,
  402. `description` varchar(512) DEFAULT NULL,
  403. `website` varchar(255) DEFAULT NULL,
  404. `default_branch` varchar(255) DEFAULT NULL,
  405. `size` bigint(20) NOT NULL DEFAULT '0',
  406. `use_custom_avatar` tinyint(1) DEFAULT NULL,
  407. `num_watches` int(11) DEFAULT NULL,
  408. `num_stars` int(11) DEFAULT NULL,
  409. `num_forks` int(11) DEFAULT NULL,
  410. `num_issues` int(11) DEFAULT NULL,
  411. `num_closed_issues` int(11) DEFAULT NULL,
  412. `num_pulls` int(11) DEFAULT NULL,
  413. `num_closed_pulls` int(11) DEFAULT NULL,
  414. `num_milestones` int(11) NOT NULL DEFAULT '0',
  415. `num_closed_milestones` int(11) NOT NULL DEFAULT '0',
  416. `is_private` tinyint(1) DEFAULT NULL,
  417. `is_bare` tinyint(1) DEFAULT NULL,
  418. `is_mirror` tinyint(1) DEFAULT NULL,
  419. `enable_wiki` tinyint(1) NOT NULL DEFAULT '1',
  420. `allow_public_wiki` tinyint(1) DEFAULT NULL,
  421. `enable_external_wiki` tinyint(1) DEFAULT NULL,
  422. `external_wiki_url` varchar(255) DEFAULT NULL,
  423. `enable_issues` tinyint(1) NOT NULL DEFAULT '1',
  424. `allow_public_issues` tinyint(1) DEFAULT NULL,
  425. `enable_external_tracker` tinyint(1) DEFAULT NULL,
  426. `external_tracker_url` varchar(255) DEFAULT NULL,
  427. `external_tracker_format` varchar(255) DEFAULT NULL,
  428. `external_tracker_style` varchar(255) DEFAULT NULL,
  429. `enable_pulls` tinyint(1) NOT NULL DEFAULT '1',
  430. `pulls_ignore_whitespace` tinyint(1) NOT NULL DEFAULT '0',
  431. `pulls_allow_rebase` tinyint(1) NOT NULL DEFAULT '0',
  432. `is_fork` tinyint(1) NOT NULL DEFAULT '0',
  433. `fork_id` bigint(20) DEFAULT NULL,
  434. `created_unix` bigint(20) DEFAULT NULL,
  435. `updated_unix` bigint(20) DEFAULT NULL
  436. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  437. --
  438. -- Dumping data for table `repository`
  439. --
  440. INSERT INTO `repository` (`id`, `owner_id`, `lower_name`, `name`, `description`, `website`, `default_branch`, `size`, `use_custom_avatar`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_bare`, `is_mirror`, `enable_wiki`, `allow_public_wiki`, `enable_external_wiki`, `external_wiki_url`, `enable_issues`, `allow_public_issues`, `enable_external_tracker`, `external_tracker_url`, `external_tracker_format`, `external_tracker_style`, `enable_pulls`, `pulls_ignore_whitespace`, `pulls_allow_rebase`, `is_fork`, `fork_id`, `created_unix`, `updated_unix`) VALUES
  441. (1, 1, 'sh', 'sh', '', '', 'master', 36864, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, '', 1, 0, 0, '', '', 'numeric', 1, 0, 0, 0, 0, 1650520679, 1651046000),
  442. (2, 1, 'coffee_mysql', 'Coffee_MySQL', '', '', 'master', 24576, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, '', 1, 0, 0, '', '', 'numeric', 1, 0, 0, 0, 0, 1651039547, 1651039556),
  443. (4, 1, 'coffeeproject', 'CoffeeProject', '', '', 'master', 16501760, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, '', 1, 0, 0, '', '', 'numeric', 1, 0, 0, 0, 0, 1651039813, 1651040166),
  444. (6, 1, 'automatically_install_files', 'Automatically_install_files', '', '', 'master', 24576, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, '', 1, 0, 0, '', '', 'numeric', 1, 0, 0, 0, 0, 1651040233, 1651040240),
  445. (7, 1, 'git_mysql', 'git_mysql', '', '', 'master', 28672, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, '', 1, 0, 0, '', '', 'numeric', 1, 0, 0, 0, 0, 1651040262, 1651040269),
  446. (8, 1, 'gogsfile', 'gogsfile', '', '', 'master', 27377664, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, '', 1, 0, 0, '', '', 'numeric', 1, 0, 0, 0, 0, 1651040294, 1651040308),
  447. (9, 1, 'mqtt_server_setting', 'mqtt_server_setting', '', '', 'master', 49152, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, '', 1, 0, 0, '', '', 'numeric', 1, 0, 0, 0, 0, 1651040324, 1651044847),
  448. (10, 1, 'proc', 'proc', '', '', 'master', 32768, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, '', 1, 0, 0, '', '', 'numeric', 1, 0, 0, 0, 0, 1651040348, 1651040358),
  449. (11, 1, 'bbend-test-jwt', 'BBend-Test-JWT', '', '', 'master', 16340992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, '', 1, 0, 0, '', '', 'numeric', 1, 0, 0, 0, 0, 1651044862, 1651045065);
  450. -- --------------------------------------------------------
  451. --
  452. -- Table structure for table `star`
  453. --
  454. CREATE TABLE `star` (
  455. `id` bigint(20) NOT NULL,
  456. `uid` bigint(20) DEFAULT NULL,
  457. `repo_id` bigint(20) DEFAULT NULL
  458. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  459. -- --------------------------------------------------------
  460. --
  461. -- Table structure for table `team`
  462. --
  463. CREATE TABLE `team` (
  464. `id` bigint(20) NOT NULL,
  465. `org_id` bigint(20) DEFAULT NULL,
  466. `lower_name` varchar(255) DEFAULT NULL,
  467. `name` varchar(255) DEFAULT NULL,
  468. `description` varchar(255) DEFAULT NULL,
  469. `authorize` int(11) DEFAULT NULL,
  470. `num_repos` int(11) DEFAULT NULL,
  471. `num_members` int(11) DEFAULT NULL
  472. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  473. -- --------------------------------------------------------
  474. --
  475. -- Table structure for table `team_repo`
  476. --
  477. CREATE TABLE `team_repo` (
  478. `id` bigint(20) NOT NULL,
  479. `org_id` bigint(20) DEFAULT NULL,
  480. `team_id` bigint(20) DEFAULT NULL,
  481. `repo_id` bigint(20) DEFAULT NULL
  482. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  483. -- --------------------------------------------------------
  484. --
  485. -- Table structure for table `team_user`
  486. --
  487. CREATE TABLE `team_user` (
  488. `id` bigint(20) NOT NULL,
  489. `org_id` bigint(20) DEFAULT NULL,
  490. `team_id` bigint(20) DEFAULT NULL,
  491. `uid` bigint(20) DEFAULT NULL
  492. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  493. -- --------------------------------------------------------
  494. --
  495. -- Table structure for table `two_factor`
  496. --
  497. CREATE TABLE `two_factor` (
  498. `id` bigint(20) NOT NULL,
  499. `user_id` bigint(20) DEFAULT NULL,
  500. `secret` varchar(255) DEFAULT NULL,
  501. `created_unix` bigint(20) DEFAULT NULL
  502. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  503. -- --------------------------------------------------------
  504. --
  505. -- Table structure for table `two_factor_recovery_code`
  506. --
  507. CREATE TABLE `two_factor_recovery_code` (
  508. `id` bigint(20) NOT NULL,
  509. `user_id` bigint(20) DEFAULT NULL,
  510. `code` varchar(11) DEFAULT NULL,
  511. `is_used` tinyint(1) DEFAULT NULL
  512. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  513. -- --------------------------------------------------------
  514. --
  515. -- Table structure for table `upload`
  516. --
  517. CREATE TABLE `upload` (
  518. `id` bigint(20) NOT NULL,
  519. `uuid` varchar(40) DEFAULT NULL,
  520. `name` varchar(255) DEFAULT NULL
  521. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  522. -- --------------------------------------------------------
  523. --
  524. -- Table structure for table `user`
  525. --
  526. CREATE TABLE `user` (
  527. `id` bigint(20) NOT NULL,
  528. `lower_name` varchar(255) NOT NULL,
  529. `name` varchar(255) NOT NULL,
  530. `full_name` varchar(255) DEFAULT NULL,
  531. `email` varchar(255) NOT NULL,
  532. `passwd` varchar(255) NOT NULL,
  533. `login_source` bigint(20) NOT NULL DEFAULT '0',
  534. `login_name` varchar(255) DEFAULT NULL,
  535. `type` int(11) DEFAULT NULL,
  536. `location` varchar(255) DEFAULT NULL,
  537. `website` varchar(255) DEFAULT NULL,
  538. `rands` varchar(10) DEFAULT NULL,
  539. `salt` varchar(10) DEFAULT NULL,
  540. `created_unix` bigint(20) DEFAULT NULL,
  541. `updated_unix` bigint(20) DEFAULT NULL,
  542. `last_repo_visibility` tinyint(1) DEFAULT NULL,
  543. `max_repo_creation` int(11) NOT NULL DEFAULT '-1',
  544. `is_active` tinyint(1) DEFAULT NULL,
  545. `is_admin` tinyint(1) DEFAULT NULL,
  546. `allow_git_hook` tinyint(1) DEFAULT NULL,
  547. `allow_import_local` tinyint(1) DEFAULT NULL,
  548. `prohibit_login` tinyint(1) DEFAULT NULL,
  549. `avatar` varchar(2048) NOT NULL,
  550. `avatar_email` varchar(255) NOT NULL,
  551. `use_custom_avatar` tinyint(1) DEFAULT NULL,
  552. `num_followers` int(11) DEFAULT NULL,
  553. `num_following` int(11) NOT NULL DEFAULT '0',
  554. `num_stars` int(11) DEFAULT NULL,
  555. `num_repos` int(11) DEFAULT NULL,
  556. `description` varchar(255) DEFAULT NULL,
  557. `num_teams` int(11) DEFAULT NULL,
  558. `num_members` int(11) DEFAULT NULL
  559. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  560. --
  561. -- Dumping data for table `user`
  562. --
  563. INSERT INTO `user` (`id`, `lower_name`, `name`, `full_name`, `email`, `passwd`, `login_source`, `login_name`, `type`, `location`, `website`, `rands`, `salt`, `created_unix`, `updated_unix`, `last_repo_visibility`, `max_repo_creation`, `is_active`, `is_admin`, `allow_git_hook`, `allow_import_local`, `prohibit_login`, `avatar`, `avatar_email`, `use_custom_avatar`, `num_followers`, `num_following`, `num_stars`, `num_repos`, `description`, `num_teams`, `num_members`) VALUES
  564. (1, 'admin1', 'admin1', '', 'admin@yahoo.com', '28ce87da20d032905f2792f55d8e6df28cff94e0dcf39e568c93d9b7cccf2bda81d741dc9bdf6a79e6ccb713c0f57fbc2cf2', 0, '', 0, '', '', 'XSMaeibCnL', '0G0bfeo07q', 1650520634, 1651044862, 0, -1, 1, 1, 0, 0, 0, '3325b3371681e9381a2c8610f34aaae7', 'admin@yahoo.com', 0, 0, 0, 0, 9, '', 0, 0);
  565. -- --------------------------------------------------------
  566. --
  567. -- Table structure for table `version`
  568. --
  569. CREATE TABLE `version` (
  570. `id` bigint(20) NOT NULL,
  571. `version` bigint(20) DEFAULT NULL
  572. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  573. --
  574. -- Dumping data for table `version`
  575. --
  576. INSERT INTO `version` (`id`, `version`) VALUES
  577. (1, 19);
  578. -- --------------------------------------------------------
  579. --
  580. -- Table structure for table `watch`
  581. --
  582. CREATE TABLE `watch` (
  583. `id` bigint(20) NOT NULL,
  584. `user_id` bigint(20) DEFAULT NULL,
  585. `repo_id` bigint(20) DEFAULT NULL
  586. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  587. --
  588. -- Dumping data for table `watch`
  589. --
  590. INSERT INTO `watch` (`id`, `user_id`, `repo_id`) VALUES
  591. (1, 1, 1),
  592. (2, 1, 2),
  593. (4, 1, 4),
  594. (6, 1, 6),
  595. (7, 1, 7),
  596. (8, 1, 8),
  597. (9, 1, 9),
  598. (10, 1, 10),
  599. (11, 1, 11);
  600. -- --------------------------------------------------------
  601. --
  602. -- Table structure for table `webhook`
  603. --
  604. CREATE TABLE `webhook` (
  605. `id` bigint(20) NOT NULL,
  606. `repo_id` bigint(20) DEFAULT NULL,
  607. `org_id` bigint(20) DEFAULT NULL,
  608. `url` text,
  609. `content_type` int(11) DEFAULT NULL,
  610. `secret` text,
  611. `events` text,
  612. `is_ssl` tinyint(1) DEFAULT NULL,
  613. `is_active` tinyint(1) DEFAULT NULL,
  614. `hook_task_type` int(11) DEFAULT NULL,
  615. `meta` text,
  616. `last_status` int(11) DEFAULT NULL,
  617. `created_unix` bigint(20) DEFAULT NULL,
  618. `updated_unix` bigint(20) DEFAULT NULL
  619. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  620. --
  621. -- Indexes for dumped tables
  622. --
  623. --
  624. -- Indexes for table `access`
  625. --
  626. ALTER TABLE `access`
  627. ADD PRIMARY KEY (`id`),
  628. ADD UNIQUE KEY `UQE_access_s` (`user_id`,`repo_id`);
  629. --
  630. -- Indexes for table `access_token`
  631. --
  632. ALTER TABLE `access_token`
  633. ADD PRIMARY KEY (`id`),
  634. ADD UNIQUE KEY `sha1` (`sha1`),
  635. ADD KEY `idx_access_token_uid` (`uid`);
  636. --
  637. -- Indexes for table `action`
  638. --
  639. ALTER TABLE `action`
  640. ADD PRIMARY KEY (`id`),
  641. ADD KEY `IDX_action_repo_id` (`repo_id`);
  642. --
  643. -- Indexes for table `attachment`
  644. --
  645. ALTER TABLE `attachment`
  646. ADD PRIMARY KEY (`id`),
  647. ADD UNIQUE KEY `UQE_attachment_uuid` (`uuid`),
  648. ADD KEY `IDX_attachment_issue_id` (`issue_id`),
  649. ADD KEY `IDX_attachment_release_id` (`release_id`);
  650. --
  651. -- Indexes for table `collaboration`
  652. --
  653. ALTER TABLE `collaboration`
  654. ADD PRIMARY KEY (`id`),
  655. ADD UNIQUE KEY `UQE_collaboration_s` (`repo_id`,`user_id`),
  656. ADD KEY `IDX_collaboration_repo_id` (`repo_id`),
  657. ADD KEY `IDX_collaboration_user_id` (`user_id`);
  658. --
  659. -- Indexes for table `comment`
  660. --
  661. ALTER TABLE `comment`
  662. ADD PRIMARY KEY (`id`),
  663. ADD KEY `IDX_comment_issue_id` (`issue_id`);
  664. --
  665. -- Indexes for table `deploy_key`
  666. --
  667. ALTER TABLE `deploy_key`
  668. ADD PRIMARY KEY (`id`),
  669. ADD UNIQUE KEY `UQE_deploy_key_s` (`key_id`,`repo_id`),
  670. ADD KEY `IDX_deploy_key_key_id` (`key_id`),
  671. ADD KEY `IDX_deploy_key_repo_id` (`repo_id`);
  672. --
  673. -- Indexes for table `email_address`
  674. --
  675. ALTER TABLE `email_address`
  676. ADD PRIMARY KEY (`id`),
  677. ADD UNIQUE KEY `UQE_email_address_email` (`email`),
  678. ADD KEY `IDX_email_address_uid` (`uid`);
  679. --
  680. -- Indexes for table `follow`
  681. --
  682. ALTER TABLE `follow`
  683. ADD PRIMARY KEY (`id`),
  684. ADD UNIQUE KEY `UQE_follow_follow` (`user_id`,`follow_id`);
  685. --
  686. -- Indexes for table `hook_task`
  687. --
  688. ALTER TABLE `hook_task`
  689. ADD PRIMARY KEY (`id`),
  690. ADD KEY `IDX_hook_task_repo_id` (`repo_id`);
  691. --
  692. -- Indexes for table `issue`
  693. --
  694. ALTER TABLE `issue`
  695. ADD PRIMARY KEY (`id`),
  696. ADD UNIQUE KEY `UQE_issue_repo_index` (`repo_id`,`index`),
  697. ADD KEY `IDX_issue_repo_id` (`repo_id`);
  698. --
  699. -- Indexes for table `issue_label`
  700. --
  701. ALTER TABLE `issue_label`
  702. ADD PRIMARY KEY (`id`),
  703. ADD UNIQUE KEY `UQE_issue_label_s` (`issue_id`,`label_id`);
  704. --
  705. -- Indexes for table `issue_user`
  706. --
  707. ALTER TABLE `issue_user`
  708. ADD PRIMARY KEY (`id`),
  709. ADD KEY `IDX_issue_user_uid` (`uid`),
  710. ADD KEY `IDX_issue_user_repo_id` (`repo_id`);
  711. --
  712. -- Indexes for table `label`
  713. --
  714. ALTER TABLE `label`
  715. ADD PRIMARY KEY (`id`),
  716. ADD KEY `IDX_label_repo_id` (`repo_id`);
  717. --
  718. -- Indexes for table `lfs_object`
  719. --
  720. ALTER TABLE `lfs_object`
  721. ADD PRIMARY KEY (`repo_id`,`oid`);
  722. --
  723. -- Indexes for table `login_source`
  724. --
  725. ALTER TABLE `login_source`
  726. ADD PRIMARY KEY (`id`),
  727. ADD UNIQUE KEY `name` (`name`);
  728. --
  729. -- Indexes for table `milestone`
  730. --
  731. ALTER TABLE `milestone`
  732. ADD PRIMARY KEY (`id`),
  733. ADD KEY `IDX_milestone_repo_id` (`repo_id`);
  734. --
  735. -- Indexes for table `mirror`
  736. --
  737. ALTER TABLE `mirror`
  738. ADD PRIMARY KEY (`id`);
  739. --
  740. -- Indexes for table `notice`
  741. --
  742. ALTER TABLE `notice`
  743. ADD PRIMARY KEY (`id`);
  744. --
  745. -- Indexes for table `org_user`
  746. --
  747. ALTER TABLE `org_user`
  748. ADD PRIMARY KEY (`id`),
  749. ADD UNIQUE KEY `UQE_org_user_s` (`uid`,`org_id`),
  750. ADD KEY `IDX_org_user_uid` (`uid`),
  751. ADD KEY `IDX_org_user_org_id` (`org_id`);
  752. --
  753. -- Indexes for table `protect_branch`
  754. --
  755. ALTER TABLE `protect_branch`
  756. ADD PRIMARY KEY (`id`),
  757. ADD UNIQUE KEY `UQE_protect_branch_protect_branch` (`repo_id`,`name`);
  758. --
  759. -- Indexes for table `protect_branch_whitelist`
  760. --
  761. ALTER TABLE `protect_branch_whitelist`
  762. ADD PRIMARY KEY (`id`),
  763. ADD UNIQUE KEY `UQE_protect_branch_whitelist_protect_branch_whitelist` (`repo_id`,`name`,`user_id`);
  764. --
  765. -- Indexes for table `public_key`
  766. --
  767. ALTER TABLE `public_key`
  768. ADD PRIMARY KEY (`id`),
  769. ADD KEY `IDX_public_key_owner_id` (`owner_id`);
  770. --
  771. -- Indexes for table `pull_request`
  772. --
  773. ALTER TABLE `pull_request`
  774. ADD PRIMARY KEY (`id`),
  775. ADD KEY `IDX_pull_request_issue_id` (`issue_id`);
  776. --
  777. -- Indexes for table `release`
  778. --
  779. ALTER TABLE `release`
  780. ADD PRIMARY KEY (`id`);
  781. --
  782. -- Indexes for table `repository`
  783. --
  784. ALTER TABLE `repository`
  785. ADD PRIMARY KEY (`id`),
  786. ADD UNIQUE KEY `UQE_repository_s` (`owner_id`,`lower_name`),
  787. ADD KEY `IDX_repository_lower_name` (`lower_name`),
  788. ADD KEY `IDX_repository_name` (`name`);
  789. --
  790. -- Indexes for table `star`
  791. --
  792. ALTER TABLE `star`
  793. ADD PRIMARY KEY (`id`),
  794. ADD UNIQUE KEY `UQE_star_s` (`uid`,`repo_id`);
  795. --
  796. -- Indexes for table `team`
  797. --
  798. ALTER TABLE `team`
  799. ADD PRIMARY KEY (`id`),
  800. ADD KEY `IDX_team_org_id` (`org_id`);
  801. --
  802. -- Indexes for table `team_repo`
  803. --
  804. ALTER TABLE `team_repo`
  805. ADD PRIMARY KEY (`id`),
  806. ADD UNIQUE KEY `UQE_team_repo_s` (`team_id`,`repo_id`),
  807. ADD KEY `IDX_team_repo_org_id` (`org_id`);
  808. --
  809. -- Indexes for table `team_user`
  810. --
  811. ALTER TABLE `team_user`
  812. ADD PRIMARY KEY (`id`),
  813. ADD UNIQUE KEY `UQE_team_user_s` (`team_id`,`uid`),
  814. ADD KEY `IDX_team_user_org_id` (`org_id`);
  815. --
  816. -- Indexes for table `two_factor`
  817. --
  818. ALTER TABLE `two_factor`
  819. ADD PRIMARY KEY (`id`),
  820. ADD UNIQUE KEY `UQE_two_factor_user_id` (`user_id`);
  821. --
  822. -- Indexes for table `two_factor_recovery_code`
  823. --
  824. ALTER TABLE `two_factor_recovery_code`
  825. ADD PRIMARY KEY (`id`);
  826. --
  827. -- Indexes for table `upload`
  828. --
  829. ALTER TABLE `upload`
  830. ADD PRIMARY KEY (`id`),
  831. ADD UNIQUE KEY `UQE_upload_uuid` (`uuid`);
  832. --
  833. -- Indexes for table `user`
  834. --
  835. ALTER TABLE `user`
  836. ADD PRIMARY KEY (`id`),
  837. ADD UNIQUE KEY `UQE_user_lower_name` (`lower_name`),
  838. ADD UNIQUE KEY `UQE_user_name` (`name`);
  839. --
  840. -- Indexes for table `version`
  841. --
  842. ALTER TABLE `version`
  843. ADD PRIMARY KEY (`id`);
  844. --
  845. -- Indexes for table `watch`
  846. --
  847. ALTER TABLE `watch`
  848. ADD PRIMARY KEY (`id`),
  849. ADD UNIQUE KEY `UQE_watch_watch` (`user_id`,`repo_id`);
  850. --
  851. -- Indexes for table `webhook`
  852. --
  853. ALTER TABLE `webhook`
  854. ADD PRIMARY KEY (`id`);
  855. --
  856. -- AUTO_INCREMENT for dumped tables
  857. --
  858. --
  859. -- AUTO_INCREMENT for table `access`
  860. --
  861. ALTER TABLE `access`
  862. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  863. --
  864. -- AUTO_INCREMENT for table `access_token`
  865. --
  866. ALTER TABLE `access_token`
  867. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  868. --
  869. -- AUTO_INCREMENT for table `action`
  870. --
  871. ALTER TABLE `action`
  872. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;
  873. --
  874. -- AUTO_INCREMENT for table `attachment`
  875. --
  876. ALTER TABLE `attachment`
  877. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  878. --
  879. -- AUTO_INCREMENT for table `collaboration`
  880. --
  881. ALTER TABLE `collaboration`
  882. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  883. --
  884. -- AUTO_INCREMENT for table `comment`
  885. --
  886. ALTER TABLE `comment`
  887. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  888. --
  889. -- AUTO_INCREMENT for table `deploy_key`
  890. --
  891. ALTER TABLE `deploy_key`
  892. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  893. --
  894. -- AUTO_INCREMENT for table `email_address`
  895. --
  896. ALTER TABLE `email_address`
  897. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  898. --
  899. -- AUTO_INCREMENT for table `follow`
  900. --
  901. ALTER TABLE `follow`
  902. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  903. --
  904. -- AUTO_INCREMENT for table `hook_task`
  905. --
  906. ALTER TABLE `hook_task`
  907. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  908. --
  909. -- AUTO_INCREMENT for table `issue`
  910. --
  911. ALTER TABLE `issue`
  912. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  913. --
  914. -- AUTO_INCREMENT for table `issue_label`
  915. --
  916. ALTER TABLE `issue_label`
  917. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  918. --
  919. -- AUTO_INCREMENT for table `issue_user`
  920. --
  921. ALTER TABLE `issue_user`
  922. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  923. --
  924. -- AUTO_INCREMENT for table `label`
  925. --
  926. ALTER TABLE `label`
  927. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  928. --
  929. -- AUTO_INCREMENT for table `login_source`
  930. --
  931. ALTER TABLE `login_source`
  932. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  933. --
  934. -- AUTO_INCREMENT for table `milestone`
  935. --
  936. ALTER TABLE `milestone`
  937. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  938. --
  939. -- AUTO_INCREMENT for table `mirror`
  940. --
  941. ALTER TABLE `mirror`
  942. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  943. --
  944. -- AUTO_INCREMENT for table `notice`
  945. --
  946. ALTER TABLE `notice`
  947. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  948. --
  949. -- AUTO_INCREMENT for table `org_user`
  950. --
  951. ALTER TABLE `org_user`
  952. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  953. --
  954. -- AUTO_INCREMENT for table `protect_branch`
  955. --
  956. ALTER TABLE `protect_branch`
  957. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  958. --
  959. -- AUTO_INCREMENT for table `protect_branch_whitelist`
  960. --
  961. ALTER TABLE `protect_branch_whitelist`
  962. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  963. --
  964. -- AUTO_INCREMENT for table `public_key`
  965. --
  966. ALTER TABLE `public_key`
  967. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  968. --
  969. -- AUTO_INCREMENT for table `pull_request`
  970. --
  971. ALTER TABLE `pull_request`
  972. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  973. --
  974. -- AUTO_INCREMENT for table `release`
  975. --
  976. ALTER TABLE `release`
  977. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  978. --
  979. -- AUTO_INCREMENT for table `repository`
  980. --
  981. ALTER TABLE `repository`
  982. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
  983. --
  984. -- AUTO_INCREMENT for table `star`
  985. --
  986. ALTER TABLE `star`
  987. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  988. --
  989. -- AUTO_INCREMENT for table `team`
  990. --
  991. ALTER TABLE `team`
  992. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  993. --
  994. -- AUTO_INCREMENT for table `team_repo`
  995. --
  996. ALTER TABLE `team_repo`
  997. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  998. --
  999. -- AUTO_INCREMENT for table `team_user`
  1000. --
  1001. ALTER TABLE `team_user`
  1002. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  1003. --
  1004. -- AUTO_INCREMENT for table `two_factor`
  1005. --
  1006. ALTER TABLE `two_factor`
  1007. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  1008. --
  1009. -- AUTO_INCREMENT for table `two_factor_recovery_code`
  1010. --
  1011. ALTER TABLE `two_factor_recovery_code`
  1012. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  1013. --
  1014. -- AUTO_INCREMENT for table `upload`
  1015. --
  1016. ALTER TABLE `upload`
  1017. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4747;
  1018. --
  1019. -- AUTO_INCREMENT for table `user`
  1020. --
  1021. ALTER TABLE `user`
  1022. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  1023. --
  1024. -- AUTO_INCREMENT for table `version`
  1025. --
  1026. ALTER TABLE `version`
  1027. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  1028. --
  1029. -- AUTO_INCREMENT for table `watch`
  1030. --
  1031. ALTER TABLE `watch`
  1032. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
  1033. --
  1034. -- AUTO_INCREMENT for table `webhook`
  1035. --
  1036. ALTER TABLE `webhook`
  1037. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  1038. COMMIT;
  1039. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  1040. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  1041. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;