Revision 8158
Added by Aaron Marcuse-Kubitza over 11 years ago
functions.sql | ||
---|---|---|
924 | 924 |
|
925 | 925 |
CREATE TABLE map ( |
926 | 926 |
"from" text NOT NULL, |
927 |
"to" text |
|
927 |
"to" text, |
|
928 |
filter text, |
|
929 |
notes text |
|
928 | 930 |
); |
929 | 931 |
|
930 | 932 |
|
Also available in: Unified diff
schemas/functions.sql: map: Added additional columns that are present in the standard map spreadsheet format (filter, notes). These columns are necessary to make COPY FROM work, because it requires the # of columns to be the same in the input data and the output table.