mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-31 00:19:36 +02:00
add bookmark sorting (#3)
This commit is contained in:
parent
31cf2bc5ad
commit
2c659d1e51
21 changed files with 1021 additions and 437 deletions
|
@ -17,6 +17,15 @@ const Bookmark = sequelize.define('Bookmark', {
|
|||
icon: {
|
||||
type: DataTypes.STRING,
|
||||
defaultValue: ''
|
||||
},
|
||||
isPinned: {
|
||||
type: DataTypes.BOOLEAN,
|
||||
defaultValue: false
|
||||
},
|
||||
orderId: {
|
||||
type: DataTypes.INTEGER,
|
||||
allowNull: true,
|
||||
defaultValue: null
|
||||
}
|
||||
}, {
|
||||
tableName: 'bookmarks'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue