Coder Social home page Coder Social logo

Comments (9)

zachdaniel avatar zachdaniel commented on June 24, 2024 1

Very strange. I'll have to look into both of these when I get a chance.

from ash_postgres.

zachdaniel avatar zachdaniel commented on June 24, 2024 1

I believe I've just found and fixed the other issue as well :)

from ash_postgres.

sevenseacat avatar sevenseacat commented on June 24, 2024

Interestingly, I actually needed a migration to fix two references and they were generated differently -

  def down do
    # This one will work
    drop constraint(:instance_logs, "instance_logs_instance_id_fkey")

    alter table(:instance_logs) do
      modify :instance_id,
             references(:instances,
               column: :id,
               prefix: "public",
               name: "instance_logs_instance_id_fkey",
               type: :uuid
             )

      # I don't even know where this came from, the column has not changed
      modify :associated_email, :text
    end

    # This one won't work
    alter table(:experiments) do
      modify :organisation_id,
             references(:organisations,
               column: :id,
               prefix: "public",
               name: "experiments_organisation_id_fkey",
               type: :uuid
             )
    end

    drop constraint(:experiments, "experiments_organisation_id_fkey")
  end

from ash_postgres.

zachdaniel avatar zachdaniel commented on June 24, 2024

Interesting...so I think what might be happening is a non deterministic sorting. I was having trouble with the original sorting algorithm so I switched it to use digraph, and without the proper dependency, it could sometimes come out in the right order and sometimes in the wrong. Thanks for the report :) will take a look

from ash_postgres.

zachdaniel avatar zachdaniel commented on June 24, 2024
      # I don't even know where this came from, the column has not changed
      modify :associated_email, :text

This is concerning.

from ash_postgres.

sevenseacat avatar sevenseacat commented on June 24, 2024

That one might be a separate issue - I have a field associated_email which is text, and I added an association that also uses it as a possible lookup field. (The email might match a valid user, but might not.)

    belongs_to :user, MyApp.Accounts.User do
      api MyApp.Accounts
      source_attribute :associated_email
      destination_attribute :email
    end

Adding the association is what caused the migration to add modify :associated_email, :text to both up and down.

from ash_postgres.

zachdaniel avatar zachdaniel commented on June 24, 2024

Could it be because the default field type for belongs_to is :uuid? Is the up migration changing the field type to :uuid? You might want attribute_type :string.

from ash_postgres.

sevenseacat avatar sevenseacat commented on June 24, 2024

Maybe. No, both, are setting it to text -

  def up do
    alter table(:instance_logs) do
      modify :associated_email, :text
    end
  end

  def down do
    alter table(:instance_logs) do
      modify :associated_email, :text
    end
  end

from ash_postgres.

zachdaniel avatar zachdaniel commented on June 24, 2024

Pushing a fix for the unrollback-able migration. Still not sure on the unnecessary attribute migration, but we'll just have to leave that for another issue :)

from ash_postgres.

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.