Revision ed2c5f6e hg18/makeDb.sql
b/hg18/makeDb.sql | ||
---|---|---|
180 | 180 |
); |
181 | 181 |
load data local infile "dataset" into table dataset; |
182 | 182 |
|
183 |
drop table if exists mock; |
|
184 |
create table mock ( |
|
185 |
tkname varchar(255) not null |
|
186 |
); |
|
187 |
load data local infile "mock" into table mock; |
|
188 |
|
|
189 | 183 |
drop table if exists encode; |
190 | 184 |
create table encode( |
191 | 185 |
tkname varchar(255) not null |
... | ... | |
208 | 202 |
load data local infile "scaffoldInfo" into table scaffoldInfo; |
209 | 203 |
|
210 | 204 |
|
205 |
drop table if exists publichub; |
|
206 |
create table publichub ( |
|
207 |
name varchar(255) not null, |
|
208 |
logo text null, |
|
209 |
url text not null, |
|
210 |
institution text not null, |
|
211 |
description text not null |
|
212 |
); |
|
213 |
load data local infile 'publichub' into table publichub; |
Also available in: Unified diff