mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
4f2421fac7
Closes #364 - Confirmed integration with local mysql installation works. - Updated fixtures and migration with appropriate schema-conforming values. - Updated schema with appropriate defaults and nullable columns. - Updated fixDates function on model base to appropriately deserialize values coming from SQLite now that dates are stored as actual DateTime objects/ISO strings. - Updated default language to be 'en_US'.
13 lines
No EOL
154 B
JavaScript
13 lines
No EOL
154 B
JavaScript
var uuid = require('node-uuid');
|
|
|
|
module.exports = {
|
|
posts: [],
|
|
|
|
settings: [],
|
|
|
|
roles: [],
|
|
|
|
permissions: [],
|
|
|
|
permissions_roles: []
|
|
}; |