diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-17 13:53:18 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-17 13:53:18 -0700 |
commit | a3ccecb7b5ec32a9020ba14ae08c482067b44544 (patch) | |
tree | eecbe7afbaf29f5b40acc03e0cf7f16bc0be82ae /rust/migrations/2018-05-12-001226_init | |
parent | b4167382d118b28cba0bce9c89abda1589d81574 (diff) | |
download | fatcat-a3ccecb7b5ec32a9020ba14ae08c482067b44544.tar.gz fatcat-a3ccecb7b5ec32a9020ba14ae08c482067b44544.zip |
more consistent example data
Diffstat (limited to 'rust/migrations/2018-05-12-001226_init')
-rw-r--r-- | rust/migrations/2018-05-12-001226_init/up.sql | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/rust/migrations/2018-05-12-001226_init/up.sql b/rust/migrations/2018-05-12-001226_init/up.sql index e6c54d32..efa02fab 100644 --- a/rust/migrations/2018-05-12-001226_init/up.sql +++ b/rust/migrations/2018-05-12-001226_init/up.sql @@ -234,8 +234,8 @@ BEGIN; INSERT INTO editor (username, is_admin) VALUES ('admin', true), - ('claire', true), - ('doug', false); + ('demo-user', true), + ('claire', false); INSERT INTO editgroup (editor_id, description) VALUES (1, 'first edit ever!'), @@ -256,8 +256,8 @@ INSERT INTO changelog (editgroup_id) VALUES (5); INSERT INTO container_rev (name, issnl, abbrev, coden) VALUES - ('Journal of Trivial Results', '1234-5678', null, null), - ('MySpace Blog', null, null, null); + ('MySpace Blog', null, null, null), + ('Journal of Trivial Results', '1234-5678', null, null); INSERT INTO container_ident (id, is_live, rev_id, redirect_id) VALUES ('00000000-0000-0000-1111-000000000001', true, 1, null), @@ -269,8 +269,8 @@ INSERT INTO container_edit (ident_id, rev_id, redirect_id, editgroup_id) VALUES INSERT INTO creator_rev (display_name, given_name, surname, orcid) VALUES ('Grace Hopper', null, null, null), - ('Emily Noether', 'Emily', 'Noether', null), - ('Christine Moran', 'Christine', 'Moran', '0000-0003-2088-7465'); + ('Christine Moran', 'Christine', 'Moran', '0000-0003-2088-7465'), + ('Emily Noether', 'Emily', 'Noether', null); INSERT INTO creator_ident (id, is_live, rev_id, redirect_id) VALUES ('00000000-0000-0000-2222-000000000001', true, 1, null), |