mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
10 lines
No EOL
218 B
JavaScript
10 lines
No EOL
218 B
JavaScript
module.exports = (sequelize, DataTypes) =>
|
|
sequelize.define('resource', {
|
|
activitypub_id: {
|
|
type: DataTypes.STRING,
|
|
index: true,
|
|
unique: true
|
|
},
|
|
hidden: DataTypes.BOOLEAN,
|
|
data: DataTypes.JSON
|
|
}) |