mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
2a5e7ad516
closes #171, closes #314, closes #315 - added settings for blog logo and icon - all other settings will need to be added as needed as it's impossible to guess what the default value should be - added tables for post tags - added tables for post custom data - added location column to users - fixeed minor bug in migrations
39 lines
No EOL
854 B
JavaScript
39 lines
No EOL
854 B
JavaScript
var uuid = require('node-uuid');
|
|
|
|
module.exports = {
|
|
posts: [],
|
|
|
|
settings: [
|
|
{
|
|
"uuid": uuid.v4(),
|
|
"key": "installedPlugins",
|
|
"value": "[]",
|
|
"created_by": 1,
|
|
"updated_by": 1,
|
|
"type": "core"
|
|
},
|
|
{
|
|
"uuid": uuid.v4(),
|
|
"key": "logo",
|
|
"value": "",
|
|
"created_by": 1,
|
|
"updated_by": 1,
|
|
"type": "blog"
|
|
},
|
|
{
|
|
"uuid": uuid.v4(),
|
|
"key": "icon",
|
|
"value": "",
|
|
"created_by": 1,
|
|
"updated_by": 1,
|
|
"type": "blog"
|
|
}
|
|
|
|
],
|
|
|
|
roles: [],
|
|
|
|
permissions: [],
|
|
|
|
permissions_roles: []
|
|
}; |