CREATE TABLE noticias(
id int(5) NOT NULL auto_increment,
img varchar(255) not null,
data date NOT NULL,
hora time NOT NULL,
titulo char(100) NOT NULL,
subtitulo char(200) not null,
texto text NOT NULL,
PRIMARY KEY (id));