mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
35 lines
885 B
JavaScript
35 lines
885 B
JavaScript
/* eslint camelcase: "off" */
|
|
|
|
'use strict';
|
|
|
|
const async = require('async');
|
|
|
|
exports.up = function(db, cb) {
|
|
async.series(
|
|
[
|
|
db.createTable.bind(db, 'projects', {
|
|
id: {
|
|
type: 'string',
|
|
length: 255,
|
|
primaryKey: true,
|
|
notNull: true,
|
|
},
|
|
name: { type: 'string', notNull: true },
|
|
description: { type: 'string' },
|
|
created_at: { type: 'timestamp', defaultValue: 'now()' },
|
|
}),
|
|
db.runSql.bind(
|
|
db,
|
|
`
|
|
INSERT INTO projects(id, name, description) VALUES('default', 'Default', 'Default project');
|
|
`,
|
|
),
|
|
],
|
|
cb,
|
|
);
|
|
};
|
|
|
|
exports.down = function(db, cb) {
|
|
return db.dropTable('projects', cb);
|
|
};
|