Closed
Description
Issue type:
[*] question
Database system/driver:
[*] sqlite
TypeORM version:
[*] latest
In SQLite, one can create a WITHOUT ROWID
table with the following query.
CREATE TABLE IF NOT EXISTS wordcount(
word TEXT PRIMARY KEY,
cnt INTEGER
) WITHOUT ROWID;
What is its equivalent in TypeORM?