add autoincrement for tables

This commit is contained in:
Jurgis Sakalauskas
2023-11-03 10:06:47 +02:00
parent 67dc81090e
commit 813e8af47f
2 changed files with 2 additions and 2 deletions
@@ -6,7 +6,7 @@ export class CreateTitlesTable1672729964237 implements MigrationInterface {
`create table titles
(
id INTEGER
primary key,
primary key autoincrement,
title VARCHAR(512),
type VARCHAR(50)
);`,