-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b705f0
commit 0fa9ca0
Showing
13 changed files
with
420 additions
and
37 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Check if db migrations are needed | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
paths: | ||
- 'drizzle/**' | ||
|
||
jobs: | ||
comment-if-db-migrations: | ||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Comment PR - db migrated | ||
uses: thollander/actions-comment-pull-request@main | ||
with: | ||
message: | | ||
> [!NOTE] | ||
> This PR introduces changes to the database. | ||
**Remember to:** | ||
1. Run the migrations in [stage database branch](https://app.planetscale.com/descobreix-begur-app/descobreix-begur-app/stage) with: | ||
```bash | ||
pnpm db:push | ||
``` | ||
1. Create a [deploy request in Planetscale](https://app.planetscale.com/descobreix-begur-app/descobreix-begur-app/deploy-requests/) | ||
1. Merge the deploy request from Planetscale just before merging the PR. | ||
comment_tag: execution |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE `place` ADD `mainImage` varchar(1024); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,285 @@ | ||
{ | ||
"version": "5", | ||
"dialect": "mysql", | ||
"id": "aea0cf0a-32d1-453e-b0e7-2419b3070b31", | ||
"prevId": "4083d305-aa61-41e2-9e44-89f0efa632c2", | ||
"tables": { | ||
"place": { | ||
"name": "place", | ||
"columns": { | ||
"id": { | ||
"name": "id", | ||
"type": "serial", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": true | ||
}, | ||
"name": { | ||
"name": "name", | ||
"type": "text", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
}, | ||
"mainImage": { | ||
"name": "mainImage", | ||
"type": "varchar(1024)", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": {}, | ||
"compositePrimaryKeys": { | ||
"place_id": { | ||
"name": "place_id", | ||
"columns": [ | ||
"id" | ||
] | ||
} | ||
}, | ||
"uniqueConstraints": {} | ||
}, | ||
"account": { | ||
"name": "account", | ||
"columns": { | ||
"userId": { | ||
"name": "userId", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
}, | ||
"type": { | ||
"name": "type", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
}, | ||
"provider": { | ||
"name": "provider", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
}, | ||
"providerAccountId": { | ||
"name": "providerAccountId", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
}, | ||
"refresh_token": { | ||
"name": "refresh_token", | ||
"type": "text", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
}, | ||
"access_token": { | ||
"name": "access_token", | ||
"type": "text", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
}, | ||
"expires_at": { | ||
"name": "expires_at", | ||
"type": "int", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
}, | ||
"token_type": { | ||
"name": "token_type", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
}, | ||
"scope": { | ||
"name": "scope", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
}, | ||
"id_token": { | ||
"name": "id_token", | ||
"type": "text", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
}, | ||
"session_state": { | ||
"name": "session_state", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": {}, | ||
"compositePrimaryKeys": { | ||
"account_provider_providerAccountId": { | ||
"name": "account_provider_providerAccountId", | ||
"columns": [ | ||
"provider", | ||
"providerAccountId" | ||
] | ||
} | ||
}, | ||
"uniqueConstraints": {} | ||
}, | ||
"session": { | ||
"name": "session", | ||
"columns": { | ||
"sessionToken": { | ||
"name": "sessionToken", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
}, | ||
"userId": { | ||
"name": "userId", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
}, | ||
"expires": { | ||
"name": "expires", | ||
"type": "timestamp", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": {}, | ||
"compositePrimaryKeys": { | ||
"session_sessionToken": { | ||
"name": "session_sessionToken", | ||
"columns": [ | ||
"sessionToken" | ||
] | ||
} | ||
}, | ||
"uniqueConstraints": {} | ||
}, | ||
"user": { | ||
"name": "user", | ||
"columns": { | ||
"id": { | ||
"name": "id", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
}, | ||
"name": { | ||
"name": "name", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
}, | ||
"hashedPassword": { | ||
"name": "hashedPassword", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
}, | ||
"email": { | ||
"name": "email", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
}, | ||
"emailVerified": { | ||
"name": "emailVerified", | ||
"type": "timestamp(3)", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
}, | ||
"image": { | ||
"name": "image", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"autoincrement": false | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": {}, | ||
"compositePrimaryKeys": { | ||
"user_id": { | ||
"name": "user_id", | ||
"columns": [ | ||
"id" | ||
] | ||
} | ||
}, | ||
"uniqueConstraints": { | ||
"user_email_unique": { | ||
"name": "user_email_unique", | ||
"columns": [ | ||
"email" | ||
] | ||
} | ||
} | ||
}, | ||
"verificationToken": { | ||
"name": "verificationToken", | ||
"columns": { | ||
"identifier": { | ||
"name": "identifier", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
}, | ||
"token": { | ||
"name": "token", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
}, | ||
"expires": { | ||
"name": "expires", | ||
"type": "timestamp", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"autoincrement": false | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": {}, | ||
"compositePrimaryKeys": { | ||
"verificationToken_identifier_token": { | ||
"name": "verificationToken_identifier_token", | ||
"columns": [ | ||
"identifier", | ||
"token" | ||
] | ||
} | ||
}, | ||
"uniqueConstraints": {} | ||
} | ||
}, | ||
"schemas": {}, | ||
"_meta": { | ||
"schemas": {}, | ||
"tables": {}, | ||
"columns": {} | ||
} | ||
} |
Oops, something went wrong.