Git Product home page Git Product logo

Comments (5)

simolus3 avatar simolus3 commented on September 27, 2024

Can you show the migration? Is it the latest one? Are you doing anything except adding the new column?
My best guess (but this requires more information either way) is that something in the migration goes wrong after that ALTER TABLE statement already ran. In that case, drift won't store the new version number and will try to re-run the migration afterwards, causing the error you're seeing. Do you see any other drift-related errors on the same devices that might indicate something with the migrations going wrong?

from drift.

heiha100 avatar heiha100 commented on September 27, 2024

Can you show the migration? Is it the latest one? Are you doing anything except adding the new column? My best guess (but this requires more information either way) is that something in the migration goes wrong after that ALTER TABLE statement already ran. In that case, drift won't store the new version number and will try to re-run the migration afterwards, causing the error you're seeing. Do you see any other drift-related errors on the same devices that might indicate something with the migrations going wrong?

Thank you for your help. I've identified the issue causing the problem. My database's latest version is 4, but I reinstalled an older version of my app and kept the database file, which downgraded the database version to 3. However, the 'speed' column wasn't deleted during this process. When I reinstalled the newest version of the app, it tried to add the 'speed' column again. To fix this, I should either add a statement for downgrading or check if the column exists before attempting an upgrade.

from drift.

orestesgaolin avatar orestesgaolin commented on September 27, 2024

Wondering, how can we check if the column exists before executing migration? I got the same issue the other day

from drift.

simolus3 avatar simolus3 commented on September 27, 2024

This PR contains code to check which columns currently exist in a database table. I'm not sure about merging it as I think the check should ideally be unnecessary in well-written migrations, but perhaps it's helpful as a pointer if you need that logic.

from drift.

orestesgaolin avatar orestesgaolin commented on September 27, 2024

Thanks, that would be amazing to have! I came up with something similar but it seems to be now wrong compared to your solution (didn't know about readNullable)

extension on Migrator {
  Future<bool> columnExists(String name, String table) async {
    // check if column exists
    final tableInfo = await database.customSelect('PRAGMA table_info(${table})').get();
    final column = tableInfo.firstWhereOrNull(
      (e) => e.read<String>('name') == name,
    );

    return column != null;
  }
}

from drift.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.