diff --git a/05-data.sql b/05-data.sql
index 1e680180566a9e0f5d19e2011dd51455c430b2ac..acb899597123ec95a6dab880fa3271ce4bfbea7c 100644
--- a/05-data.sql
+++ b/05-data.sql
@@ -2,11 +2,11 @@
    Initialization test for storage table
 */
 
-INSERT INTO storage (storage_type, base_path, hostname) VALUES ('cold', '/ia2_tape_generic_rw_01/users', 'tape-fe.ia2.inaf.it');
-INSERT INTO storage (storage_type, base_path, hostname) VALUES ('hot', '/mnt/hot_storage/users', 'server');
-INSERT INTO storage (storage_type, base_path, hostname) VALUES ('local', '/home', 'localhost');
-INSERT INTO storage (storage_type, base_path, hostname) VALUES ('local', '/home/vospace/upload', 'localhost');
-INSERT INTO storage (storage_type, base_path, hostname) VALUES ('portal', '/files/new/lbt', 'archive.lbto.org');
+INSERT INTO storage (storage_type, base_path, base_url, hostname) VALUES ('cold', '/ia2_tape_generic_rw_01/users', NULL, 'tape-fe.ia2.inaf.it');
+INSERT INTO storage (storage_type, base_path, base_url, hostname) VALUES ('hot', '/mnt/hot_storage/users', NULL, 'server');
+INSERT INTO storage (storage_type, base_path, base_url, hostname) VALUES ('local', '/home', NULL, 'localhost');
+INSERT INTO storage (storage_type, base_path, base_url, hostname) VALUES ('local', '/home/vospace/upload', NULL, 'localhost');
+INSERT INTO storage (storage_type, base_path, base_url, hostname) VALUES ('portal', NULL, '/files/new/lbt', 'archive.lbto.org');
 
 
 /*