# Platformatic v0.11.0 - npm create platformatic

Hi Folks,

This release is from Málaga, where I'm speaking at [Wey Wey Web](https://www.weyweyweb.com/)! It packs quite a few bug fixes and two new important features!

**Full Release notes**: 

**Full Changelog**: https://github.com/platformatic/platformatic/compare/v0.10.0...v0.11.0

## Highlights

### `create-platformatic` interactive cli tool

This new tool for interactively initializing new Platformatic applications will supersede the old `platformatic db init` command. It provides an interactive prompt that ask a few questions along the way. 

<iframe width="640" height="406" src="https://www.loom.com/embed/71d9b878743a4231ad62284a2305795f" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>

This feature was developed by [@marcopiraccini](https://github.com/marcopiraccini) in https://github.com/platformatic/platformatic/pull/427

### Migration Generation

Creating new migrations files was a bit boring. We now have an excellent command: `platformatic db migrations generate`.

<iframe width="640" height="374" src="https://www.loom.com/embed/8aa3a3cad46d490f8fc8b599571f86a6" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>

This feature was developed by [@stanimirovv](https://github.com/stanimirovv) in https://github.com/platformatic/platformatic/pull/136.

### Autotimestamp option and configuration

In Platformatic DB,  timestamps can be set automatically if you have `created_at` and `updated_at` columns on your tables. This behavior can be configured with:

```json
{
...
  "core": {
    "connectionString": "postgres://postgres:postgres@127.0.0.1/postgres",
    "autoTimestamp": {
      "createdAt": "inserted_at",
      "updatedAt": "updated_at"
    }
...
}
```

Or disabled with:

```json
{
...
  "core": {
    "connectionString": "postgres://postgres:postgres@127.0.0.1/postgres",
    "autoTimestamp": false
...
}
```

This feature was developed by [@marcelom97](https://marcelom97) in https://github.com/platformatic/platformatic/pull/443.



