I have migrations from a mysql database, and all works fine. Now I want to migrate those tables to a sql server database, I reconfigue the .env and app/database file, but when i run php artisan migrate get this error:
[Illuminate\Database\QueryException]
SQLSTATE[42000]: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]Incorrect syntax near the keyword 'RESTRICT'. (SQL: alter table "alumno" add constraint "alumno_ibfk_2" foreign key ("id_proyecto") references "proyecto" ("id") on delete RESTRICT on update RESTRICT)
[PDOException] SQLSTATE[42000]: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]Incorrect syntax near the keyword 'RESTRICT'.
this error shows when create the tables with foreing keys.