@earbug/db-models 0.0.39 → 0.0.40

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.
package/dist/MerchItem.js CHANGED
@@ -112,6 +112,13 @@ class MerchItem extends sequelize_1.Model {
112
112
  { name: "canon_artist_id" },
113
113
  ]
114
114
  },
115
+ {
116
+ name: "idx_merch_item_artist_create_date",
117
+ fields: [
118
+ { name: "canon_artist_id" },
119
+ { name: "create_date", order: "DESC" },
120
+ ]
121
+ },
115
122
  {
116
123
  name: "merch_item_pkey",
117
124
  unique: true,
@@ -101,6 +101,13 @@ class NewsArticle extends sequelize_1.Model {
101
101
  { name: "canon_artist_id" },
102
102
  ]
103
103
  },
104
+ {
105
+ name: "idx_news_article_artist_publish_date",
106
+ fields: [
107
+ { name: "canon_artist_id" },
108
+ { name: "article_publish_date", order: "DESC" },
109
+ ]
110
+ },
104
111
  {
105
112
  name: "news_article_pkey",
106
113
  unique: true,
@@ -152,6 +152,13 @@ export class MerchItem extends Model<MerchItemAttributes, MerchItemCreationAttri
152
152
  { name: "canon_artist_id" },
153
153
  ]
154
154
  },
155
+ {
156
+ name: "idx_merch_item_artist_create_date",
157
+ fields: [
158
+ { name: "canon_artist_id" },
159
+ { name: "create_date", order: "DESC" },
160
+ ]
161
+ },
155
162
  {
156
163
  name: "merch_item_pkey",
157
164
  unique: true,
@@ -131,6 +131,13 @@ export class NewsArticle extends Model<NewsArticleAttributes, NewsArticleCreatio
131
131
  { name: "canon_artist_id" },
132
132
  ]
133
133
  },
134
+ {
135
+ name: "idx_news_article_artist_publish_date",
136
+ fields: [
137
+ { name: "canon_artist_id" },
138
+ { name: "article_publish_date", order: "DESC" },
139
+ ]
140
+ },
134
141
  {
135
142
  name: "news_article_pkey",
136
143
  unique: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@earbug/db-models",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {