TypeORM does not create tables, columns etc
Even though the previous answers are acceptable for development environment, they are wrong for production. What you are looking for are migrations. Migrations are executed when connection is established and are recorded – no migration will run more than once. TypeORM also provides CLI which allows you to generate migrations (read more here), making it … Read more