Changeset 496 for trunk/app/config
- Timestamp:
- 05/16/08 23:04:18 (7 months ago)
- Location:
- trunk/app/config/sql/postgresql
- Files:
-
- 2 modified
-
karamelo.sql (modified) (3 diffs)
-
users.sql (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/config/sql/postgresql/karamelo.sql
r436 r496 58 58 59 59 \i ./webquests.sql 60 \i ./result_webquests.sql 60 61 \i ./vclassrooms_webquests.sql 61 62 \i ./treasures.sql 62 63 \i ./treasures_vclassrooms.sql 64 \i ./result_treasures.sql 63 65 64 66 \i ./tests.sql … … 66 68 \i ./questions.sql 67 69 \i ./answers.sql 68 \i ./results.sql 70 \i ./results.sql --test results 71 \i ./participations.sql 69 72 70 73 \i ./shares.sql … … 73 76 74 77 -- Next I am not sure 75 \i ./communities.sql 76 \i ./communities_users.sql 78 \i ./communities.sql -- this tables will be used on 0.3 79 \i ./communities_users.sql 77 80 \i ./wikis.sql 78 81 \i ./wiki_revisions.sql 79 \i ./settings.sql 82 \i ./settings.sql 80 83 \i ./upload_revisions.sql 81 84 \i ./uploads.sql 82 83 84 85 86 87 88 89 -
trunk/app/config/sql/postgresql/users.sql
r446 r496 24 24 -- passwd = "karamelo" 25 25 INSERT INTO users("username", "pwd", "name", "email", "group_id", "active", "cv", "quote", "name_blog") 26 VALUES ('admin', ' f713c27c6cfc028ce4f756ea692dcf80af42846c', 'John Smith', 'john@site.edu',26 VALUES ('admin', '3916784b451c011b7ec822fb9bb66cfc3b5dbf0e', 'John Smith', 'john@site.edu', 27 27 1, 28 28 1, … … 30 30 '"Nonviolence is a weapon of the strong", Gandhi', 31 31 'The Lost Forest'); 32
