lang-database 1.1.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -88,13 +88,6 @@ Prisma.NullTypes = {
88
88
  // https://github.com/microsoft/TypeScript/issues/3192#issuecomment-261720275
89
89
  function makeEnum(x) { return x; }
90
90
 
91
- exports.Prisma.AdminScalarFieldEnum = makeEnum({
92
- id: 'id',
93
- email: 'email',
94
- name: 'name',
95
- password: 'password'
96
- });
97
-
98
91
  exports.Prisma.AnswerScalarFieldEnum = makeEnum({
99
92
  id: 'id',
100
93
  userId: 'userId',
@@ -117,7 +110,7 @@ exports.Prisma.GoogleUserScalarFieldEnum = makeEnum({
117
110
 
118
111
  exports.Prisma.PackScalarFieldEnum = makeEnum({
119
112
  id: 'id',
120
- adminId: 'adminId',
113
+ teacherId: 'teacherId',
121
114
  name: 'name',
122
115
  currentPrice: 'currentPrice'
123
116
  });
@@ -134,6 +127,13 @@ exports.Prisma.SortOrder = makeEnum({
134
127
  desc: 'desc'
135
128
  });
136
129
 
130
+ exports.Prisma.TeacherScalarFieldEnum = makeEnum({
131
+ id: 'id',
132
+ email: 'email',
133
+ name: 'name',
134
+ password: 'password'
135
+ });
136
+
137
137
  exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
138
138
  Serializable: 'Serializable'
139
139
  });
@@ -158,7 +158,7 @@ exports.Prisma.ModelName = makeEnum({
158
158
  UserCard: 'UserCard',
159
159
  Pack: 'Pack',
160
160
  User: 'User',
161
- Admin: 'Admin',
161
+ Teacher: 'Teacher',
162
162
  GoogleUser: 'GoogleUser',
163
163
  Answer: 'Answer',
164
164
  Purchase: 'Purchase'