Initial commit: Kivy database interface application with search, add/update, delete functionality and Windows build support
This commit is contained in:
8
setup_user.sql
Normal file
8
setup_user.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
-- Create user and grant privileges for MariaDB
|
||||
CREATE USER IF NOT EXISTS 'omron'@'localhost' IDENTIFIED BY 'Initial01!';
|
||||
GRANT ALL PRIVILEGES ON cantare_injectie.* TO 'omron'@'localhost';
|
||||
FLUSH PRIVILEGES;
|
||||
|
||||
-- Show the user and their privileges
|
||||
SELECT User, Host FROM mysql.user WHERE User='omron';
|
||||
SHOW GRANTS FOR 'omron'@'localhost';
|
||||
Reference in New Issue
Block a user