Questions tagged [evolve]

8 questions
12
votes
5 answers

Is there any C# API for Flyway?

Is there any C# API for Flyway? I want to include Flyway with a .Net application and not force none Java developers to install Flyway or Maven or Java. Rather have them use tools they are familiar with like Nuget for example.
Melissa
  • 812
  • 2
  • 10
  • 24
1
vote
1 answer

Validate failed: invalid checksum for migration (Evolve )

I use evolve to automate my database changes and help keep those changes in sync across all my environments and development teams. Before I run the evolve is ok. But I am currently encountering errors in evolve, and the error information shows…
Fatt Sky
  • 650
  • 3
  • 11
1
vote
1 answer

How do I mark an Evolve migration complete?

I am using Evolve to manage database migrations. I made a schema update directly to the database without using Evolve, then created a migration script, and now I need Evolve to recognize that it's already been done. How can I do that? The Evolve…
Josh Withee
  • 9,922
  • 3
  • 44
  • 62
1
vote
2 answers

Make Evolve (DB Migration) Erase include all schemas

I'm using Evolve which is based on Flyway for database migrations. When I create the database from scratch my migration scripts create schemas named rls and 'legacy', function and a procedure in rls, and a table in legacy. When I set the Evolve…
xr280xr
  • 12,621
  • 7
  • 81
  • 125
0
votes
1 answer

Docker-compose, migration with evolve on a mariadb

I'm attempting to use evolve migration for my db, in docker-compose, enabling a local version of production for development. The idea is for each time I start my docker-compose, the changes to my db tables will be migrated. I started using…
Mufas
  • 3
  • 2
0
votes
0 answers

Delete Rows from a repeating table in Winshuttle Evolve tool

I'm trying to delete a row in a repeating table where a particular row is selected using a checkbox. I need a JavaScript code to achieve the same because there is no standard rule available in the evolve composer. I tried following methods but none…
-1
votes
1 answer

How to create script or Flyway can be configured to call it every time using a SQL callback?

How to create script or Flyway can be configured to call it every time using a SQL callback ??
-1
votes
1 answer

How to do migration using evolve in asp .net core with nhibernate?

I have to create a table in PSql database using code first approach in asp .net core with nHibernate ORM. I have tried evolve migration. I didn't get any error but table is not created in the database. I don't know what's wrong in that. Here is…