We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid prisma.feed.findMany() invocation: The table feeds does not exist in the current database.
prisma.feed.findMany()
feeds
The text was updated successfully, but these errors were encountered:
重启容器后成功添加
Sorry, something went wrong.
@ZJahon 你是使用mysql的容器的吧?应该是没有初始化表。 增加一个初始化的操作就好了 这是一个参考的docker-compose.yml
services: db: image: mysql:8.3.0 container_name: wewe-rss-db environment: MYSQL_ROOT_PASSWORD: 123456 MYSQL_DATABASE: wewe-rss TZ: 'Asia/Shanghai' ports: - '3306:3306' volumes: - wewe_rss_db_data:/var/lib/mysql networks: - wewe-rss-network restart: always init: image: cooderl/wewe-rss:latest depends_on: - db environment: DATABASE_URL: 'mysql://root:123456@db:3306/wewe-rss?schema=public&connect_timeout=30&pool_timeout=30&socket_timeout=30' command: ["sh", "-c", "npx prisma db push"] restart: "no" wewe-rss: image: cooderl/wewe-rss:latest container_name: wewe-rss ports: - '4000:4000' environment: DATABASE_URL: 'mysql://root:123456@db:3306/wewe-rss?schema=public&connect_timeout=30&pool_timeout=30&socket_timeout=30' AUTH_CODE: '123567' FEED_MODE: 'fulltext' ENABLE_CLEAN_HTML: 'false' depends_on: - db networks: - wewe-rss-network restart: always networks: wewe-rss-network: driver: bridge volumes: wewe_rss_db_data:
No branches or pull requests
Invalid
prisma.feed.findMany()
invocation: The tablefeeds
does not exist in the current database.The text was updated successfully, but these errors were encountered: