Created
May 28, 2016 13:08
-
-
Save cesarAugusto1994/7d6688744c29f6743ff22d90d997a439 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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