fix: ip assigment index feat: default username
This commit is contained in:
4
lnvps_db/migrations/20250328220956_fixes.sql
Normal file
4
lnvps_db/migrations/20250328220956_fixes.sql
Normal file
@ -0,0 +1,4 @@
|
||||
-- Add migration script here
|
||||
ALTER TABLE vm_ip_assignment DROP KEY ix_vm_ip_assignment_ip;
|
||||
alter table vm_os_image
|
||||
add column default_username varchar(50);
|
@ -206,6 +206,7 @@ pub struct VmOsImage {
|
||||
pub release_date: DateTime<Utc>,
|
||||
/// URL location of cloud image
|
||||
pub url: String,
|
||||
pub default_username: Option<String>,
|
||||
}
|
||||
|
||||
impl VmOsImage {
|
||||
|
Reference in New Issue
Block a user