Replace comma-separated tags with relational tag system.
- Add tags and domain_tags tables - Support tag management - Support user isolation (global/private tags) - Add filtering all domain views to operations - Update all domain views automatically
This commit is contained in:
@@ -50,6 +50,7 @@ class InstallerController extends Controller
|
||||
'017_add_two_factor_authentication.sql',
|
||||
'018_add_user_isolation.sql',
|
||||
'019_add_webhook_channel_type.sql',
|
||||
'020_create_tags_system.sql',
|
||||
];
|
||||
|
||||
try {
|
||||
@@ -185,7 +186,8 @@ class InstallerController extends Controller
|
||||
'016_add_tags_to_domains.sql',
|
||||
'017_add_two_factor_authentication.sql',
|
||||
'018_add_user_isolation.sql',
|
||||
'019_add_webhook_channel_type.sql'
|
||||
'019_add_webhook_channel_type.sql',
|
||||
'020_create_tags_system.sql'
|
||||
];
|
||||
}
|
||||
|
||||
@@ -367,6 +369,7 @@ class InstallerController extends Controller
|
||||
'017_add_two_factor_authentication.sql',
|
||||
'018_add_user_isolation.sql',
|
||||
'019_add_webhook_channel_type.sql',
|
||||
'020_create_tags_system.sql',
|
||||
];
|
||||
|
||||
$stmt = $pdo->prepare("INSERT INTO migrations (migration) VALUES (?) ON DUPLICATE KEY UPDATE migration=migration");
|
||||
|
||||
Reference in New Issue
Block a user