The error he gives me is this:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'KEY (id))' at line 8
and this is what I programmed:
CREATE DATABASE blog;
USE blog;
CREATE TABLE usuarios (
id INT NOT NULL AUTO_INCREMENT,
nombre VARCHAR(25) NOT NULL,
email VARCHAR(255) NOT NULL,
password VARCHAR(40) NOT NULL,
fecha_registro DATETIME NOT NULL,
activo TINYINT NOT NULL,
PRYMARY KEY(id)
);