We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d80c64 commit bef113fCopy full SHA for bef113f
dados.sql
@@ -34,6 +34,8 @@ CREATE TABLE estado (
34
constraint fk_estado_regiao foreign key (regiao_id) references regiao_geografica(id)
35
);
36
37
+ALTER SEQUENCE estado_id_seq RESTART WITH 27;
38
+
39
CREATE UNIQUE INDEX ix_estado ON estado (nome);
40
CREATE UNIQUE INDEX ix_uf ON estado (uf);
41
@@ -45,6 +47,8 @@ CREATE TABLE cidade (
45
47
constraint fk_cidade_estado foreign key (estado_id) references estado(id)
46
48
49
50
+ALTER SEQUENCE cidade_id_seq RESTART WITH 5564;
51
52
CREATE UNIQUE INDEX ix_cidade ON cidade (nome, estado_id);
53
54
create table cliente (
0 commit comments