Files
liberama/server/db/jembaMigrations/reader-storage/001-create.js
2021-12-01 17:50:48 +07:00

15 lines
336 B
JavaScript

module.exports = {
up: [
//CREATE TABLE storage (id TEXT PRIMARY KEY, rev INTEGER, time INTEGER, data TEXT);
['create', {
table: 'storage',
hash: {field: 'id', type: 'string', depth: 100}
}],
],
down: [
['drop', {
table: 'storage'
}],
]
};