Your locally hosted lumina server for IDAPro
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ea: add migrations

Naim A 8fea8b36 b13cd0e8

+14 -1
+2
common/migrations/2024-03-22-062826_func-ea64s/down.sql
··· 1 + ALTER TABLE funcs 2 + DROP COLUMN ea;
+2
common/migrations/2024-03-22-062826_func-ea64s/up.sql
··· 1 + ALTER TABLE funcs 2 + ADD COLUMN ea bigint DEFAULT NULL;
+10 -1
common/src/db/schema_auto.rs
··· 3 3 diesel::table! { 4 4 dbs (id) { 5 5 id -> Int4, 6 + #[max_length = 260] 6 7 file_path -> Nullable<Varchar>, 8 + #[max_length = 260] 7 9 idb_path -> Nullable<Varchar>, 8 10 file_id -> Nullable<Int4>, 9 11 user_id -> Nullable<Int4>, ··· 28 30 rank -> Nullable<Int4>, 29 31 push_dt -> Nullable<Timestamptz>, 30 32 update_dt -> Nullable<Timestamptz>, 33 + ea -> Nullable<Int8>, 31 34 } 32 35 } 33 36 ··· 36 39 id -> Int4, 37 40 lic_id -> Nullable<Bytea>, 38 41 lic_data -> Nullable<Bytea>, 42 + #[max_length = 260] 39 43 hostname -> Nullable<Varchar>, 40 44 first_seen -> Nullable<Timestamptz>, 41 45 } ··· 45 49 diesel::joinable!(dbs -> users (user_id)); 46 50 diesel::joinable!(funcs -> dbs (db_id)); 47 51 48 - diesel::allow_tables_to_appear_in_same_query!(dbs, files, funcs, users,); 52 + diesel::allow_tables_to_appear_in_same_query!( 53 + dbs, 54 + files, 55 + funcs, 56 + users, 57 + );