You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

292 lines
12 KiB

6 years ago
6 years ago
6 years ago
  1. /* global WIKI */
  2. exports.up = knex => {
  3. const dbCompat = {
  4. charset: (WIKI.config.db.type === `mysql` || WIKI.config.db.type === `mariadb`)
  5. }
  6. return knex.schema
  7. // =====================================
  8. // MODEL TABLES
  9. // =====================================
  10. // ASSETS ------------------------------
  11. .createTable('assets', table => {
  12. if (dbCompat.charset) { table.charset('utf8mb4') }
  13. table.increments('id').primary()
  14. table.string('filename').notNullable()
  15. table.string('basename').notNullable()
  16. table.string('ext').notNullable()
  17. table.enum('kind', ['binary', 'image']).notNullable().defaultTo('binary')
  18. table.string('mime').notNullable().defaultTo('application/octet-stream')
  19. table.integer('fileSize').unsigned().comment('In kilobytes')
  20. table.json('metadata')
  21. table.string('createdAt').notNullable()
  22. table.string('updatedAt').notNullable()
  23. })
  24. // ASSET FOLDERS -----------------------
  25. .createTable('assetFolders', table => {
  26. if (dbCompat.charset) { table.charset('utf8mb4') }
  27. table.increments('id').primary()
  28. table.string('name').notNullable()
  29. table.string('slug').notNullable()
  30. table.integer('parentId').unsigned().references('id').inTable('assetFolders')
  31. })
  32. // AUTHENTICATION ----------------------
  33. .createTable('authentication', table => {
  34. if (dbCompat.charset) { table.charset('utf8mb4') }
  35. table.string('key').notNullable().primary()
  36. table.boolean('isEnabled').notNullable().defaultTo(false)
  37. table.json('config').notNullable()
  38. table.boolean('selfRegistration').notNullable().defaultTo(false)
  39. table.json('domainWhitelist').notNullable()
  40. table.json('autoEnrollGroups').notNullable()
  41. })
  42. // COMMENTS ----------------------------
  43. .createTable('comments', table => {
  44. if (dbCompat.charset) { table.charset('utf8mb4') }
  45. table.increments('id').primary()
  46. table.text('content').notNullable()
  47. table.string('createdAt').notNullable()
  48. table.string('updatedAt').notNullable()
  49. })
  50. // EDITORS -----------------------------
  51. .createTable('editors', table => {
  52. if (dbCompat.charset) { table.charset('utf8mb4') }
  53. table.string('key').notNullable().primary()
  54. table.boolean('isEnabled').notNullable().defaultTo(false)
  55. table.json('config').notNullable()
  56. })
  57. // GROUPS ------------------------------
  58. .createTable('groups', table => {
  59. if (dbCompat.charset) { table.charset('utf8mb4') }
  60. table.increments('id').primary()
  61. table.string('name').notNullable()
  62. table.json('permissions').notNullable()
  63. table.json('pageRules').notNullable()
  64. table.boolean('isSystem').notNullable().defaultTo(false)
  65. table.string('createdAt').notNullable()
  66. table.string('updatedAt').notNullable()
  67. })
  68. // LOCALES -----------------------------
  69. .createTable('locales', table => {
  70. if (dbCompat.charset) { table.charset('utf8mb4') }
  71. table.string('code', 2).notNullable().primary()
  72. table.json('strings')
  73. table.boolean('isRTL').notNullable().defaultTo(false)
  74. table.string('name').notNullable()
  75. table.string('nativeName').notNullable()
  76. table.string('createdAt').notNullable()
  77. table.string('updatedAt').notNullable()
  78. })
  79. // LOGGING ----------------------------
  80. .createTable('loggers', table => {
  81. if (dbCompat.charset) { table.charset('utf8mb4') }
  82. table.string('key').notNullable().primary()
  83. table.boolean('isEnabled').notNullable().defaultTo(false)
  84. table.string('level').notNullable().defaultTo('warn')
  85. table.json('config')
  86. })
  87. // NAVIGATION ----------------------------
  88. .createTable('navigation', table => {
  89. if (dbCompat.charset) { table.charset('utf8mb4') }
  90. table.string('key').notNullable().primary()
  91. table.json('config')
  92. })
  93. // PAGE HISTORY ------------------------
  94. .createTable('pageHistory', table => {
  95. if (dbCompat.charset) { table.charset('utf8mb4') }
  96. table.increments('id').primary()
  97. table.string('path').notNullable()
  98. table.string('hash').notNullable()
  99. table.string('title').notNullable()
  100. table.string('description')
  101. table.boolean('isPrivate').notNullable().defaultTo(false)
  102. table.boolean('isPublished').notNullable().defaultTo(false)
  103. table.string('publishStartDate')
  104. table.string('publishEndDate')
  105. table.text('content')
  106. table.string('contentType').notNullable()
  107. table.string('createdAt').notNullable()
  108. })
  109. // PAGES -------------------------------
  110. .createTable('pages', table => {
  111. if (dbCompat.charset) { table.charset('utf8mb4') }
  112. table.increments('id').primary()
  113. table.string('path').notNullable()
  114. table.string('hash').notNullable()
  115. table.string('title').notNullable()
  116. table.string('description')
  117. table.boolean('isPrivate').notNullable().defaultTo(false)
  118. table.boolean('isPublished').notNullable().defaultTo(false)
  119. table.string('privateNS')
  120. table.string('publishStartDate')
  121. table.string('publishEndDate')
  122. table.text('content')
  123. table.text('render')
  124. table.json('toc')
  125. table.string('contentType').notNullable()
  126. table.string('createdAt').notNullable()
  127. table.string('updatedAt').notNullable()
  128. })
  129. // PAGE TREE ---------------------------
  130. .createTable('pageTree', table => {
  131. if (dbCompat.charset) { table.charset('utf8mb4') }
  132. table.increments('id').primary()
  133. table.string('path').notNullable()
  134. table.integer('depth').unsigned().notNullable()
  135. table.string('title').notNullable()
  136. table.boolean('isPrivate').notNullable().defaultTo(false)
  137. table.boolean('isFolder').notNullable().defaultTo(false)
  138. table.string('privateNS')
  139. })
  140. // RENDERERS ---------------------------
  141. .createTable('renderers', table => {
  142. if (dbCompat.charset) { table.charset('utf8mb4') }
  143. table.string('key').notNullable().primary()
  144. table.boolean('isEnabled').notNullable().defaultTo(false)
  145. table.json('config')
  146. })
  147. // SEARCH ------------------------------
  148. .createTable('searchEngines', table => {
  149. if (dbCompat.charset) { table.charset('utf8mb4') }
  150. table.string('key').notNullable().primary()
  151. table.boolean('isEnabled').notNullable().defaultTo(false)
  152. table.json('config')
  153. })
  154. // SETTINGS ----------------------------
  155. .createTable('settings', table => {
  156. if (dbCompat.charset) { table.charset('utf8mb4') }
  157. table.string('key').notNullable().primary()
  158. table.json('value')
  159. table.string('updatedAt').notNullable()
  160. })
  161. // STORAGE -----------------------------
  162. .createTable('storage', table => {
  163. if (dbCompat.charset) { table.charset('utf8mb4') }
  164. table.string('key').notNullable().primary()
  165. table.boolean('isEnabled').notNullable().defaultTo(false)
  166. table.string('mode', ['sync', 'push', 'pull']).notNullable().defaultTo('push')
  167. table.json('config')
  168. })
  169. // TAGS --------------------------------
  170. .createTable('tags', table => {
  171. if (dbCompat.charset) { table.charset('utf8mb4') }
  172. table.increments('id').primary()
  173. table.string('tag').notNullable().unique()
  174. table.string('title')
  175. table.string('createdAt').notNullable()
  176. table.string('updatedAt').notNullable()
  177. })
  178. // USER KEYS ---------------------------
  179. .createTable('userKeys', table => {
  180. if (dbCompat.charset) { table.charset('utf8mb4') }
  181. table.increments('id').primary()
  182. table.string('kind').notNullable()
  183. table.string('token').notNullable()
  184. table.string('createdAt').notNullable()
  185. table.string('validUntil').notNullable()
  186. })
  187. // USERS -------------------------------
  188. .createTable('users', table => {
  189. if (dbCompat.charset) { table.charset('utf8mb4') }
  190. table.increments('id').primary()
  191. table.string('email').notNullable()
  192. table.string('name').notNullable()
  193. table.string('providerId')
  194. table.string('password')
  195. table.boolean('tfaIsActive').notNullable().defaultTo(false)
  196. table.string('tfaSecret')
  197. table.string('jobTitle').defaultTo('')
  198. table.string('location').defaultTo('')
  199. table.string('pictureUrl')
  200. table.string('timezone').notNullable().defaultTo('America/New_York')
  201. table.boolean('isSystem').notNullable().defaultTo(false)
  202. table.boolean('isActive').notNullable().defaultTo(false)
  203. table.boolean('isVerified').notNullable().defaultTo(false)
  204. table.string('createdAt').notNullable()
  205. table.string('updatedAt').notNullable()
  206. })
  207. // =====================================
  208. // RELATION TABLES
  209. // =====================================
  210. // PAGE HISTORY TAGS ---------------------------
  211. .createTable('pageHistoryTags', table => {
  212. if (dbCompat.charset) { table.charset('utf8mb4') }
  213. table.increments('id').primary()
  214. table.integer('pageId').unsigned().references('id').inTable('pageHistory').onDelete('CASCADE')
  215. table.integer('tagId').unsigned().references('id').inTable('tags').onDelete('CASCADE')
  216. })
  217. // PAGE TAGS ---------------------------
  218. .createTable('pageTags', table => {
  219. if (dbCompat.charset) { table.charset('utf8mb4') }
  220. table.increments('id').primary()
  221. table.integer('pageId').unsigned().references('id').inTable('pages').onDelete('CASCADE')
  222. table.integer('tagId').unsigned().references('id').inTable('tags').onDelete('CASCADE')
  223. })
  224. // USER GROUPS -------------------------
  225. .createTable('userGroups', table => {
  226. if (dbCompat.charset) { table.charset('utf8mb4') }
  227. table.increments('id').primary()
  228. table.integer('userId').unsigned().references('id').inTable('users').onDelete('CASCADE')
  229. table.integer('groupId').unsigned().references('id').inTable('groups').onDelete('CASCADE')
  230. })
  231. // =====================================
  232. // REFERENCES
  233. // =====================================
  234. .table('assets', table => {
  235. table.integer('folderId').unsigned().references('id').inTable('assetFolders')
  236. table.integer('authorId').unsigned().references('id').inTable('users')
  237. })
  238. .table('comments', table => {
  239. table.integer('pageId').unsigned().references('id').inTable('pages')
  240. table.integer('authorId').unsigned().references('id').inTable('users')
  241. })
  242. .table('pageHistory', table => {
  243. table.integer('pageId').unsigned().references('id').inTable('pages')
  244. table.string('editorKey').references('key').inTable('editors')
  245. table.string('localeCode', 2).references('code').inTable('locales')
  246. table.integer('authorId').unsigned().references('id').inTable('users')
  247. })
  248. .table('pages', table => {
  249. table.string('editorKey').references('key').inTable('editors')
  250. table.string('localeCode', 2).references('code').inTable('locales')
  251. table.integer('authorId').unsigned().references('id').inTable('users')
  252. table.integer('creatorId').unsigned().references('id').inTable('users')
  253. })
  254. .table('pageTree', table => {
  255. table.integer('parent').unsigned().references('id').inTable('pageTree')
  256. table.integer('pageId').unsigned().references('id').inTable('pages')
  257. table.string('localeCode', 2).references('code').inTable('locales')
  258. })
  259. .table('userKeys', table => {
  260. table.integer('userId').unsigned().references('id').inTable('users')
  261. })
  262. .table('users', table => {
  263. table.string('providerKey').references('key').inTable('authentication').notNullable().defaultTo('local')
  264. table.string('localeCode', 2).references('code').inTable('locales').notNullable().defaultTo('en')
  265. table.string('defaultEditor').references('key').inTable('editors').notNullable().defaultTo('markdown')
  266. table.unique(['providerKey', 'email'])
  267. })
  268. }
  269. exports.down = knex => {
  270. return knex.schema
  271. .dropTableIfExists('userGroups')
  272. .dropTableIfExists('pageHistoryTags')
  273. .dropTableIfExists('pageHistory')
  274. .dropTableIfExists('pageTags')
  275. .dropTableIfExists('assets')
  276. .dropTableIfExists('assetFolders')
  277. .dropTableIfExists('comments')
  278. .dropTableIfExists('editors')
  279. .dropTableIfExists('groups')
  280. .dropTableIfExists('locales')
  281. .dropTableIfExists('navigation')
  282. .dropTableIfExists('pages')
  283. .dropTableIfExists('renderers')
  284. .dropTableIfExists('settings')
  285. .dropTableIfExists('storage')
  286. .dropTableIfExists('tags')
  287. .dropTableIfExists('userKeys')
  288. .dropTableIfExists('users')
  289. }