Ryan Burnette 1e6c35151f initial build
- passes https://git.coolaj86.com/coolaj86/greenlock-store-test.js
- lacks working approveDomains example
- not 100% sure wildcards are fully supported
- not tested in production
2019-04-08 13:01:22 +00:00

19 lines
301 B
JavaScript

'use strict';
module.exports = function (sequelize, DataTypes) {
var Keypair = sequelize.define('Keypair',{
xid: {
type: DataTypes.STRING,
unique: true
},
content: {
type: DataTypes.TEXT
}
});
Keypair.associate = function(models) {
};
return Keypair;
};