Fix sqlite migration typo.

This commit is contained in:
Orne Brocaar 2025-03-25 11:31:12 +00:00
parent 849d27f148
commit ca7b0a2e61
2 changed files with 2 additions and 2 deletions

View File

@ -72,4 +72,4 @@ alter table device_keys
add column gen_app_key blob not null default x'00000000000000000000000000000000';
alter table device
add column all_layer_params text not null default '{}';
add column app_layer_params text not null default '{}';

View File

@ -60,7 +60,7 @@ diesel::table! {
join_eui -> Binary,
secondary_dev_addr -> Nullable<Binary>,
device_session -> Nullable<Binary>,
all_layer_params -> Text,
app_layer_params -> Text,
}
}