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.

259 lines
11 KiB

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