getting file size for all dict files to be downloaded. coming to be 400mb or so.
[worddb.git] / migrations / 007_add_administrator_and_site_objects.py
blob2568334bdad6d620b13d81965c6dc0d922c3db7f
1 from dmigrations.mysql import migrations as m
3 migration = m.Migration(
4 sql_up=[
5 """
6 INSERT INTO `auth_user` VALUES (
7 1,'root','','','root@worddb.org',
8 'sha1$d8e53$9419fa1cd82d5d25b993a0230f3ae4bb2c83e55c',
9 1,1,1,'2008-10-25 21:06:26','2008-10-25 21:06:26'
11 """,
12 """
13 INSERT INTO `django_site` VALUES (1,'www.worddb.org','worddb');
14 """
15 ], sql_down=["select 1;"]