Refactor database schema: Remove access list and related entities, add editing session and edit operation entities
- Deleted `access_list_entry`, `location`, `proxy_host`, `proxy_host_access_list`, `session`, `stream_service`, `stream_service_access_list` entities and their corresponding migration files. - Introduced `editing_session` and `edit_operation` entities with appropriate fields and relationships. - Updated `mod.rs` and `prelude.rs` to reflect the changes in the entity structure. - Adjusted migration files to remove obsolete migrations and include new migrations for the editing session and edit operation tables.
This commit is contained in:
@@ -2,14 +2,9 @@
|
||||
|
||||
pub mod prelude;
|
||||
|
||||
pub mod access_list;
|
||||
pub mod access_list_entry;
|
||||
pub mod config;
|
||||
pub mod location;
|
||||
pub mod proxy_host;
|
||||
pub mod proxy_host_access_list;
|
||||
pub mod stream_service;
|
||||
pub mod stream_service_access_list;
|
||||
pub mod edit_operation;
|
||||
pub mod editing_session;
|
||||
pub mod upstream;
|
||||
pub mod upstream_target;
|
||||
pub mod user;
|
||||
|
||||
Reference in New Issue
Block a user