Merge pull request #3694 from hristog/fix-comments

Fix comment typos and remove an outdated todo.
This commit is contained in:
Kevin Reed 2020-05-11 09:32:46 -05:00 committed by GitHub
commit 8fb90941c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*
This file contants inital content for any tables.
This file contains initial content for tables.
The table must be first defined in schema.sql before any content
is added!

View File

@ -370,7 +370,7 @@ create table user_submit_app (
app_id integer not null,
manage tinyint not null,
-- can
-- create/deprecated app versions of this app
-- create/deprecate app versions of this app
-- grant/revoke permissions (except admin) this app
-- abort their jobs
primary key (user_id, app_id)
@ -816,7 +816,6 @@ create table consent (
primary key (id)
) engine=InnoDB;
-- @todo - change 'protect' to 'project_specific'
create table consent_type (
id integer not null auto_increment,
shortname varchar(255) not null,