mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
Nested Folders: Make parent_uid column nullable (#59035)
Nested Folders: Make parent UID column nullable
This commit is contained in:
parent
bdfa127ee5
commit
15561b83e4
@ -33,7 +33,7 @@ func folderv1() migrator.Table {
|
||||
{Name: "org_id", Type: migrator.DB_BigInt, Nullable: false},
|
||||
{Name: "title", Type: migrator.DB_NVarchar, Length: 255, Nullable: false},
|
||||
{Name: "description", Type: migrator.DB_NVarchar, Length: 255, Nullable: true},
|
||||
{Name: "parent_uid", Type: migrator.DB_NVarchar, Length: 40, Default: ""},
|
||||
{Name: "parent_uid", Type: migrator.DB_NVarchar, Length: 40, Nullable: true},
|
||||
{Name: "created", Type: migrator.DB_DateTime, Nullable: false},
|
||||
{Name: "updated", Type: migrator.DB_DateTime, Nullable: false},
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user