This commit is contained in:
Leandro Facchinetti 2021-03-16 02:18:07 +00:00
parent 4647b5f64b
commit 94d3185fde
1 changed files with 3 additions and 0 deletions

View File

@ -47,6 +47,9 @@ export default function killTheNewsletter(
"content" TEXT NOT NULL "content" TEXT NOT NULL
); );
`, `,
sql`
CREATE INDEX "entriesFeed" ON "entries" ("feed");
`,
]); ]);
webApplication.use(express.static(path.join(__dirname, "../public"))); webApplication.use(express.static(path.join(__dirname, "../public")));