Skip to content

Instantly share code, notes, and snippets.

@cesarAugusto1994
Created May 28, 2016 13:08
Show Gist options
  • Save cesarAugusto1994/7d6688744c29f6743ff22d90d997a439 to your computer and use it in GitHub Desktop.
Save cesarAugusto1994/7d6688744c29f6743ff22d90d997a439 to your computer and use it in GitHub Desktop.
create TABLE acervo (
id int(11) not null,
titulo varchar(80) not null,
autor varchar(80) not null,
descricao longtext not null,
data_cadastro datetime not null,
url longtext not null,
PRIMARY KEY (id)
);
create TABLE secao (
id int(11) not null,
nome varchar(120) not null,
status int(11) not null,
PRIMARY KEY (id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment