tortoise / aerich

A database migrations tool for TortoiseORM, ready to production.
https://github.com/tortoise/aerich
Apache License 2.0
820 stars 94 forks source link

[Enhancement] Fix version file formats #199

Closed ehdgua01 closed 1 year ago

ehdgua01 commented 2 years ago

FIX

ehdgua01 commented 2 years ago

@long2ice Can you review this PR?

ehdgua01 commented 1 year ago

@long2ice Hi, Can I add a docker-compose.yaml file for testing?

see below,

version: '3.9'
services:
  mysql:
    image: mysql:8
    ports:
      - "3306:3306"
    environment:
      MYSQL_DATABASE: test_\{\}
      MYSQL_ROOT_PASSWORD: 123456

  postgres:
    image: postgres:14
    ports:
      - "5432:5432"
    environment:
      POSTGRES_DB: test_\{\}
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: 123456
long2ice commented 1 year ago

Thanks!