Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dax/jcl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rousselie <dax@happycoders.org>2008-11-09 22:31:32 +0300
committerDavid Rousselie <dax@happycoders.org>2008-11-09 22:31:32 +0300
commit055bdf342486b97a8b456bbe34dc49258995cfee (patch)
tree2d2ad0c389c44d3e068bdc8e127f7b8b80d64acc /sqlobject_history
parentb369a64715b256cba38411c8733c511712f9efdd (diff)
correct sqlite upgrade script
darcs-hash:20081109193132-86b55-4b64a9dd712f3ced073a714ddc8d6f6ebb265439.gz
Diffstat (limited to 'sqlobject_history')
-rw-r--r--sqlobject_history/2008-11-08/upgrade_sqlite_2008-11-09.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlobject_history/2008-11-08/upgrade_sqlite_2008-11-09.sql b/sqlobject_history/2008-11-08/upgrade_sqlite_2008-11-09.sql
index d3c73a3..41adb02 100644
--- a/sqlobject_history/2008-11-08/upgrade_sqlite_2008-11-09.sql
+++ b/sqlobject_history/2008-11-08/upgrade_sqlite_2008-11-09.sql
@@ -24,7 +24,7 @@ CREATE TABLE account (
user_id INT CONSTRAINT user_id_exists REFERENCES user_table(id) ,
child_name VARCHAR (255)
);
-INSERT INTO account SELECT * FROM account;
+INSERT INTO account SELECT * FROM account_backup;
DROP TABLE account_backup;
commit;