ADD drop table at start

This commit is contained in:
2024-07-02 00:04:43 +02:00
parent f435f32bba
commit 301e80afa7
4 changed files with 179 additions and 44 deletions

View File

@ -1,5 +1,8 @@
-- Initialize the tables for the callbook program
DROP TABLE IF EXISTS `callbook_user`;
DROP TABLE IF EXISTS `callbook_address`;
CREATE TABLE IF NOT EXISTS `callbook_user`(
`id` SERIAL,
`user_id` INT(10) UNSIGNED NOT NULL DEFAULT 0,