Browse Source

Add uuids

Pitu 6 years ago
parent
commit
69dd014f49
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/api/database/migrations/20190221225812_initialMigration.js

+ 4 - 0
src/api/database/migrations/20190221225812_initialMigration.js

@@ -1,6 +1,7 @@
 exports.up = async knex => {
 	await knex.schema.createTable('users', table => {
 		table.increments();
+		table.string('uuid');
 		table.string('username');
 		table.string('password');
 		table.boolean('enabled');
@@ -14,6 +15,7 @@ exports.up = async knex => {
 
 	await knex.schema.createTable('albums', table => {
 		table.increments();
+		table.string('uuid');
 		table.integer('userId');
 		table.string('name');
 		table.timestamp('zippedAt');
@@ -23,6 +25,7 @@ exports.up = async knex => {
 
 	await knex.schema.createTable('files', table => {
 		table.increments();
+		table.string('uuid');
 		table.integer('userId');
 		table.string('name');
 		table.string('original');
@@ -36,6 +39,7 @@ exports.up = async knex => {
 
 	await knex.schema.createTable('links', table => {
 		table.increments();
+		table.string('uuid');
 		table.integer('userId');
 		table.integer('albumId');
 		table.string('identifier');