diff options
| author | Andreas Brachold <vdr07@deltab.de> | 2007-11-18 08:41:53 +0000 |
|---|---|---|
| committer | Andreas Brachold <vdr07@deltab.de> | 2007-11-18 08:41:53 +0000 |
| commit | 5a42246e9309641278c119528133fb1bf0416f1e (patch) | |
| tree | 9c7b4d37d8c681421e37bef8f3e1d09396d51374 /contrib/import-data.sql | |
| parent | 77f9f2cfd5656e4f5b2407915ca7122ec2e28b0a (diff) | |
| download | xxv-5a42246e9309641278c119528133fb1bf0416f1e.tar.gz xxv-5a42246e9309641278c119528133fb1bf0416f1e.tar.bz2 | |
* Reorder file names of documentation
* Create upgrade-xxv-db.sql only with user data tables
Diffstat (limited to 'contrib/import-data.sql')
| -rw-r--r-- | contrib/import-data.sql | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/import-data.sql b/contrib/import-data.sql index fbad5e8..003ff05 100644 --- a/contrib/import-data.sql +++ b/contrib/import-data.sql @@ -4,14 +4,15 @@ DELETE from AUTOTIMER; DELETE from CHRONICLE; -DELETE from USER; DELETE from MEDIALIB_ACTORS; DELETE from MEDIALIB_VIDEODATA; DELETE from MEDIALIB_VIDEOGENRE; +DELETE from USER; load data infile '/tmp/autotimer.sav' into table AUTOTIMER; -load data infile '/tmp/user.sav' into table USER; load data infile '/tmp/chronicle.sav' into table CHRONICLE; load data infile '/tmp/medialib_actors.sav' into table MEDIALIB_ACTORS; load data infile '/tmp/medialib_videodata.sav' into table MEDIALIB_VIDEODATA; load data infile '/tmp/medialib_videogenre.sav' into table MEDIALIB_VIDEOGENRE; +load data infile '/tmp/user.sav' into table USER; + |
