mirror of
https://github.com/koel/koel.git
synced 2026-04-25 08:46:00 +03:00
[GH-ISSUE #787] artisan init fails using sql server #564
Labels
No labels
Authentication
Dependencies
Documentation
Feature Request
Flac
Help Wanted
Installation/Setup
Integration
Mobile
PR Welcome
Pending Release
Performance
Playlist
S3
Search
Sync
[Pri] Low
[Pri] Normal
[Status] Keep Open
[Status] Needs Author Reply
[Status] Needs Review
[Status] Stale
[Status] Will Implement
[Type] Blessed
[Type] Bug
[Type] Duplicate
[Type] Enhancement
[Type] Help Request
[Type] Question
[Type] Task
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/koel-koel#564
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dotnetdan on GitHub (Aug 23, 2018).
Original GitHub issue: https://github.com/koel/koel/issues/787
Hi,
I'm trying to get up and running using sql server, on Windows 10.
When I run php artisan koel:init, the database seeding fails with errors saying "Cannot insert explicit value for identity column in table 'artists' when IDENTITY_INSERT is set to OFF"
In sql server, you cannot insert explicit values into an identity column unless explicitly request permission to do so, by running
SET IDENTITY_INSERT dbo.artists OFF;- not sure if Laravel supports this? Has anyone gotten this running using SQL Server?@dotnetdan commented on GitHub (Aug 25, 2018):
I switched to mysql. I guess I'll close this, since I think it might be more of an issue with Laravel.