summaryrefslogtreecommitdiff
path: root/db/create.sql
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2015-10-12 12:02:43 +0200
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2015-10-12 12:04:00 +0200
commit0850ea13c19d4f2a382fd7d4bcf6333f446fa68b (patch)
treeeac97facaf39d8a79a068b1c90279c3d069431f0 /db/create.sql
parent7ab74a08a68bcb3afce03b089e57df5aff66bdd9 (diff)
Drop is_visible column from problem table
Diffstat (limited to 'db/create.sql')
-rw-r--r--db/create.sql1
1 files changed, 0 insertions, 1 deletions
diff --git a/db/create.sql b/db/create.sql
index 57c3647..bb7ee35 100644
--- a/db/create.sql
+++ b/db/create.sql
@@ -68,7 +68,6 @@ create table problem (
problem_group_id integer not null,
name varchar(100) not null,
identifier varchar(100) not null,
- is_visible bool not null default true,
constraint problem_pk primary key (id),
constraint problem_fk1 foreign key (language_id) references language (id) on delete no action on update cascade,
constraint problem_fk2 foreign key (problem_group_id) references problem_group (id) on delete no action on update cascade,