11,195 questions
-4
votes
1
answer
51
views
django model with foreign key onto settings.AUTH_USER_MODEL fails when app is incorporated into other app using postgres [duplicate]
I have a survey app that works fine as a standalone app with no complaints (using sqlite).
But when I incorporate the survey app into another that is using postgres as a database, it fails to run the ...
0
votes
1
answer
29
views
django model with foreign key onto settings.AUTH_USER_MODEL fails when app is incorporated into other app using postgres
I have a survey app that works fine as a standalone app with no complaints (using sqlite).
But when I incorporate the survey app into another that is using postgres as a database, it fails to run the ...
2
votes
1
answer
49
views
Elasticsearch replaces scroll for migration
Old scroll stuff doesn't work since migrating:
private RestHighLevelClient client;
response = client.searchScroll(new SearchScrollRequest(response.getScrollId()).scroll(TimeValue.timeValueMillis(60000)...
Best practices
0
votes
0
replies
20
views
Android / Google Play – Migrating from paid app to free app with IAP: how to preserve premium access for legacy users after uninstall?
I’m facing a migration problem with Google Play and I’d like to get feedback from other Android developers.
Context
I originally had two apps:
a paid app (premium by default)
a free app
Maintaining ...
2
votes
1
answer
77
views
Migrating Elasticsearch no subAggregation anymore
I am migrating Elasticsearch to version 7.17.29 getting rid of RestHighLevelClient
But I've encountered an issue since subAggregation is no longer present.
This is the code I am trying to migrate.
...
0
votes
0
answers
45
views
How can I diff schemas between two separate Supabase projects (remote → remote) using the Supabase CLI?
I'm trying to compare the schema of two different Supabase projects (each in a separate Supabase account). My goal is to generate a migration or diff showing the differences between:
Project A (dev)
...
1
vote
1
answer
103
views
Why does Laravel read the schema as if it had 2 primary keys? [duplicate]
Here's my laravel composer.json for its version info:
{
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton ...
Tooling
1
vote
1
replies
56
views
Linq2Sql Migration Experience
Is there anyone reading this that has experience of netcore-System.Data.Linq? We are about to embark on a very large code-base migration from Framework 4.8 to .NET8. We have relied on Linq2Sql for all ...
1
vote
1
answer
265
views
Inject migration angular didn't work on nx workspace [closed]
I use this nx generate @angular/core:inject to migrate projects but get below error:
Could not find any files to migrate under the path /home/jibit/Desktop/jibit-angular-workspace/. Cannot run the ...
1
vote
2
answers
66
views
After migrating to Hibernate6 "LazyTableGroup cannot be cast to class PluralTableGroup" exception
I am migrating a project from Spring Boot 2.7.18 to Spring Boot 3, and this causes a Hibernate upgrade as well from Hibernate 5.6 to Hibernate 6.1.7.
I had a rather complicated criteria query. After ...
6
votes
1
answer
196
views
How to manage Entity Framework migrations and databases when using Git version control?
We are planning to use a Gitflow workflow and a shared test database. We currently use EF 6.5.1 and have automatic migrations disabled.
Problem: if a developer runs Update-Database (or dotnet ef ...
-1
votes
2
answers
157
views
Migrating tailwind.config.js from v3 to v4: How to handle text, border, and fill colors with theme variable namespaces?
In my current project, I’m migrating from Tailwind v3 to the latest version, where all color-related tokens are consolidated under the --color namespace.
In Tailwind v3, I was able to extend textColor,...
0
votes
1
answer
72
views
Migrate TYPO3 FlexForm data columns
Database records with FlexForm columns don't auto-upgrade when new fields are added in the flexform. When adding a new select field in a plugin configuration (or a flux content element), I can't rely ...
0
votes
0
answers
135
views
Prevent Reflex (Using Alembic) from generating migrations of existing tables in the database
I am using Reflex with Alembic to manage migrations.
My problem is that when I run reflex db makemigrations, Alembic includes all the tables that already exist in the database, even if they are not ...
0
votes
1
answer
302
views
Detox upgrade to React Native 0.79 from 0.77 - an error occurred while waiting for the app to become ready
I've been trying to resolve the following problem for quite some time now:
I started implementing the tests with Detox when our app was on RN 0.77, and everything was working fine.
However, after ...