Skip to content
Snippets Groups Projects
Commit 8b6b2cb0 authored by Andy Yates's avatar Andy Yates
Browse files

Allowing people to comment on web data

parent 0a010596
No related branches found
No related tags found
No related merge requests found
-- Patching in support for comments on web data
ALTER TABLE web_data
ADD COLUMN comment TEXT
AFTER data;
......@@ -183,6 +183,9 @@ CREATE TABLE analysis_web_data (
CREATE TABLE web_data (
web_data_id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
data TEXT,
-- Columns for internal documentation
comment TEXT,
-- Columns for the web interface:
created_by INTEGER,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment