tagged [migration]
Laravel make model with migration
Laravel make model with migration I'm creating a model on the Laravel 5 with this command: As it shows on the video lessons that as soon as model is created, new migration file also must be created. B...
- Modified
- 31 Jul at 07:15
.NET 2.0 or 3.5?
.NET 2.0 or 3.5? Our clients use a vb6 version of our software. We are upgrading them to a .NET application written in C#... Is there less bulk using .net 2.0 than .net 3.5? My definition of less bulk...
- Modified
- 14 Apr at 19:36
Rails: Adding an index after adding column
Rails: Adding an index after adding column Suppose I created a table `table` in a Rails app. Some time later, I add a column running: Then I realize I need to add `user_id` as an index. I know about t...
- Modified
- 7 Feb at 14:24
How can I migrate my WCF services to ServiceStack API?
How can I migrate my WCF services to ServiceStack API? Currently we are using the WCF services in C# as a web services and we want to migrate it to Service Stack Web API. So what is the best option to...
- Modified
- 26 May at 13:39
What are the key benefits when upgrading from Wicket 1.3.7 to 1.4.9?
What are the key benefits when upgrading from Wicket 1.3.7 to 1.4.9? I am thinking about migrating a large web app from Wicket 1.3.7 to Wicket 1.49. As some basic things have changed with version 1.4,...
Fastest way to migrate from sql server to sqlite for large datasets
Fastest way to migrate from sql server to sqlite for large datasets I have a database with more than 32 million records, I have to migrate it from SQL Server to Sqlite. I have tried SSIS (SQL Server I...
- Modified
- 15 Jul at 14:7
Reset Entity-Framework Migrations
Reset Entity-Framework Migrations I've mucked up my migrations, I used `IgnoreChanges` on the initial migration, but now I want to delete all my migrations and start with an initial migration with all...
- Modified
- 4 Apr at 07:12
.NET core 3: Order of serialization for JsonPropertyName (System.Text.Json.Serialization)
.NET core 3: Order of serialization for JsonPropertyName (System.Text.Json.Serialization) While migrating to .NET Core 3 I've switched from Newtonsoft.Json serialization to System.Text.Json.Serializat...
- Modified
- 2 Sep at 19:18
How to upgrade all solution projects .Net framework 4.5.1 to 4.8 Visual Studio 2019
How to upgrade all solution projects .Net framework 4.5.1 to 4.8 Visual Studio 2019 I have a solution in Visual Studio 2019 with many C # projects. I need to retarget all of the projects from the .NET...
- Modified
- 12 Dec at 13:46
List all sequences in a Postgres db 8.1 with SQL
List all sequences in a Postgres db 8.1 with SQL I'm converting a db from postgres to mysql. Since i cannot find a tool that does the trick itself, i'm going to convert all postgres sequences to autoi...
- Modified
- 29 Sep at 15:19
Migrating a project from C# to Java
Migrating a project from C# to Java With some changes in the staffing at the office, the levels of C# expertise has dropped off precipitously and there are now more Java developers. It has gotten to t...
- Modified
- 23 May at 12:2
Difference between ExecuteAsync and StartAsync methods in BackgroundService .net core
Difference between ExecuteAsync and StartAsync methods in BackgroundService .net core Migrating from the legacy .NET Framework I need to create a long time background process worker. Looking at the do...
- Modified
- 29 Nov at 15:27
Slow (to none) performance on SQL 2005 after attaching SQL 2000 database
Slow (to none) performance on SQL 2005 after attaching SQL 2000 database Issue: Using the detach/attach SQL database from a SQL 2000 SP4 instance to a much beefier SQL 2005 SP2 server. Run reindex, re...
- Modified
- 26 Oct at 14:51
EF Core Add Migration Debugging
EF Core Add Migration Debugging How can I step into `OnModelCreating` with a breakpoint and see if my logic is wrong or if the `ModelBuilder` is doing something I'm not expecting? I've seen lots of po...
- Modified
- 7 May at 13:18
What’s the best approach when migrating legacy projects across versions of visual studio?
What’s the best approach when migrating legacy projects across versions of visual studio? I've been thinking about the number of projects we have in-house that are still being developed using visual s...
- Modified
- 14 Jul at 14:19
NHibernate SchemaUpdate
NHibernate SchemaUpdate From personal experience, as well as everything I've read, NHibernate's SchemaUpdate doesn't support removing columns and tables. I'd like to use SchemaUpdate to generate migra...
- Modified
- 1 Jun at 14:7
What's the simplest .NET equivalent of a VB6 control array?
What's the simplest .NET equivalent of a VB6 control array? Maybe I just don't know .NET well enough yet, but I have yet to see a satisfactory way to implement this simple VB6 code easily in .NET (ass...
- Modified
- 26 Mar at 12:35
Porting a PowerBuilder Application to .NET
Porting a PowerBuilder Application to .NET Does anyone have any advice for migrating a PowerBuilder 10 business application to .NET? My company is considering migrating a legacy PB application to .NET...
- Modified
- 13 Feb at 15:34
How to move Jenkins from one PC to another
How to move Jenkins from one PC to another I am currently using Jenkins on my development PC. I installed it on my development PC, because I had limited knowledge on this tool; so I tested on it in my...
- Modified
- 18 Mar at 09:54
What is the exact location of MySQL database tables in XAMPP folder?
What is the exact location of MySQL database tables in XAMPP folder? I have a MySQL database and I want to know the exact location where this data actually stored in the XAMPP folder, I went to this f...
- Modified
- 22 Jun at 09:14
Cross-Database information_schema Joins in SQL Server
Cross-Database information_schema Joins in SQL Server I am attempting to provide a general solution for the migration of data from one schema version to another. A problem arises when the column data ...
- Modified
- 17 Sep at 15:0
Conversion tool comparisons for visual basic 6.0
Conversion tool comparisons for visual basic 6.0 Has anyone here used either of the following (or any other tool) to convert your vb6 code to a .net language? [Artinsoft's upgrade companion](http://ww...
- Modified
- 17 Sep at 22:14
How to declare local variables in postgresql?
How to declare local variables in postgresql? There is an almost identical, but not really answered question [here](https://stackoverflow.com/questions/1490942/how-to-declare-a-variable-in-a-postgresq...
- Modified
- 23 May at 12:9
Set Script Task code dynamically in SSIS 2012
Set Script Task code dynamically in SSIS 2012 In my application, a script task is created dynamically. In SQL Server 2008's implementation of SSIS, the following method worked fine. ``` private void S...
- Modified
- 23 Nov at 20:57
C# Error "Is not supported by the language" after migration to .Net4
C# Error "Is not supported by the language" after migration to .Net4 I'm trying to migration our website from .Net 3.5 to 4 and I'm encountering a very weird issue. Code that works just fine in 3.5 do...