From 55e2d17636ab9a7aa56338a353dc16f084637246 Mon Sep 17 00:00:00 2001 From: kanadeko Date: Mon, 16 Jan 2017 04:21:46 -0300 Subject: Admin panel, pomf-standarization and stuff --- database/db.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'database') diff --git a/database/db.js b/database/db.js index a7b1192..8dc62d0 100644 --- a/database/db.js +++ b/database/db.js @@ -11,7 +11,12 @@ let init = function(db){ db.schema.createTableIfNotExists('files', function (table) { table.increments() table.string('file') + table.string('original') + table.string('type') + table.string('size') + table.string('ip') table.integer('galleryid') + table.timestamps() }).then(() => {}) } -- cgit v1.2.3