-
Notifications
You must be signed in to change notification settings - Fork 0
/
seeders.txt
137 lines (116 loc) · 2.88 KB
/
seeders.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
let options = {};
options.schema = process.env.SCHEMA; // define your schema in options object
options.tableName = 'Notebooks';
module.exports = {
up: async (queryInterface, Sequelize) => {
return queryInterface.bulkInsert(options, [
{
name: 'Notebook One',
authorId: 1
},
{
name: 'Notebook Two',
authorId: 1
},
{
name: 'Notebook Three',
authorId: 1
},
], {});
},
down: async (queryInterface, Sequelize) => {
const Op = Sequelize.Op;
return queryInterface.bulkDelete(options, {
authorId: 1
}, {});
}
};
'use strict';
/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up (queryInterface, Sequelize) {
/**
* Add seed commands here.
*
* Example:
* await queryInterface.bulkInsert('People', [{
* name: 'John Doe',
* isBetaMember: false
* }], {});
*/
},
async down (queryInterface, Sequelize) {
/**
* Add commands to revert seed here.
*
* Example:
* await queryInterface.bulkDelete('People', null, {});
*/
}
};
let options = {};
options.schema = process.env.SCHEMA; // define your schema in options object
options.tableName = 'TextNotes';
module.exports = {
up: async (queryInterface, Sequelize) => {
return queryInterface.bulkInsert(options, [
{
name: 'Note One',
authorId: 1,
notebookId: 1,
note: "this is demo text-note one"
},
{
name: 'Note Two',
authorId: 1,
notebookId: 1,
note: "this is demo text-note one"
},
{
name: 'Note Three',
authorId: 1,
notebookId: 2,
note: "this is demo text-note one"
},
], {});
},
down: async (queryInterface, Sequelize) => {
const Op = Sequelize.Op;
return queryInterface.bulkDelete(options, {
authorId:1
}, {});
}
};
let options = {};
options.schema = process.env.SCHEMA; // define your schema in options object
options.tableName = 'ImageNotes';
module.exports = {
up: async (queryInterface, Sequelize) => {
return queryInterface.bulkInsert(options, [
{
name: 'Note One',
authorId: 1,
notebookId: 1,
url: "https://www.etsy.com/img/35559346/r/il/89bc21/3901020588/il_1588xN.3901020588_53lr.jpg"
},
{
name: 'Note Two',
authorId: 1,
notebookId: 1,
url: "https://www.etsy.com/img/35559346/r/il/89bc21/3901020588/il_1588xN.3901020588_53lr.jpg"
},
{
name: 'Note Three',
authorId: 1,
notebookId: 2,
url: "https://www.etsy.com/img/35559346/r/il/89bc21/3901020588/il_1588xN.3901020588_53lr.jpg"
},
], {});
},
down: async (queryInterface, Sequelize) => {
const Op = Sequelize.Op;
return queryInterface.bulkDelete(options, {
authorId: 1
}, {});
}
};