- Which database tables are created in the migrations?
- Migrattion 1
- Users table
- Migration 2
- Language table
- Migration 3
- Word table
- Migrattion 1
- What are the endpoints for user registration, login and refresh?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT lists_spots.list_id, | |
| lists.name AS list_name, | |
| lists.tags AS list_tags, | |
| users.name AS created_by, | |
| spot_id, | |
| spots.name, | |
| spots.tags AS spots_tags, | |
| spots.address, | |
| spots.city, | |
| spots.state, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| should be: | |
| liked | visits | id | ... | |
| 0 0 3 | |
| 4 2 2 | |
| 2 2 1 | |
| getting: | |
| liked | visits | id | ... | |
| 0 0 3 | |
| 8 8 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return db.transaction(function (trx) { | |
| return db('equipment_pack') | |
| .transacting(trx) | |
| .insert(epPayload) | |
| .returning("*") | |
| .then(response => { | |
| return db('characters') | |
| .transacting(trx) | |
| .insert({ | |
| ...newCharPayload, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| div { | |
| background-image: url(something.jpg), | |
| url(another-thing.jpg) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/thinkful-ei-heron/thingful-server-danb | |
| https://github.com/thinkful-ei-heron/thingful-client-danb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Name: Wyrn Alliance | |
| User Flow: https://imgur.com/xl89PB9 | |
| Images: https://imgur.com/a/l7DRla2 | |
| LiveLink: https://weyr-alliance-site-1bwjikp0u.now.sh | |
| database: https://app.sqldbm.com/PostgreSQL/Share/Mx-sZqEorPmOwT3SbzyW1UGFrngIE8md_DYjF4jNYw0 |
dfsefsehttps://trello.com/b/fP2hf6PD/wyrn-alliance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const STORE = { | |
| characters: [ | |
| { | |
| id: 1, | |
| name: 'opha kit', | |
| race: 'Human', | |
| class: 'Arcane', | |
| sub_class: 'Wizard', | |
| xp: 3, | |
| hand_size: 6, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DROP TYPE IF EXISTS race CASCADE; | |
| CREATE TYPE race AS ENUM ( | |
| 'Human', | |
| 'Shield Dwarf', | |
| 'Half-Orc', | |
| 'Half-Elf', | |
| 'Sun-Elf' | |
| ); | |
| DROP TYPE IF EXISTS char_class CASCADE; |
NewerOlder