Merge pull request #1289 from zRxnx/main

fix(SQL): fixed missing column
This commit is contained in:
Gellipapa
2024-01-22 02:22:03 +01:00
committed by GitHub
4 changed files with 45 additions and 34 deletions
@@ -0,0 +1,14 @@
name: Add issue or pull request to project board
on:
issues:
types:
- opened
pull_request_target:
types:
- opened
jobs:
auto-move-project-cards:
uses: esx-framework/.github/.github/workflows/automatic-add-issue-to-board.yml@main
secrets: inherit
-34
View File
@@ -1,34 +0,0 @@
name: Add issue or pull request to project board
on:
issues:
types:
- opened
pull_request_target:
types:
- opened
jobs:
add-to-project:
name: Add issue or pull request to project
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Get current date
id: date
run: echo "date=$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_ENV
- name: Add to project
uses: actions/add-to-project@v0.5.0
with:
project-url: https://github.com/orgs/esx-framework/projects/9
github-token: ${{ secrets.MY_GITHUB_TOKEN }}
id: add-project
- name: Update project fields
uses: titoportas/update-project-fields@v0.1.0
with:
project-url: https://github.com/orgs/esx-framework/projects/9
github-token: ${{ secrets.MY_GITHUB_TOKEN }}
item-id: ${{ steps.add-project.outputs.itemId }}
field-keys: Date,Priority
field-values: ${{ env.date }},Unrealised
+30
View File
@@ -0,0 +1,30 @@
name: Simple Release
on:
workflow_dispatch:
inputs:
versionNumber:
description: 'Version Number'
required: false
default: ''
zipName:
description: 'Zip Name'
required: true
default: 'esx_core'
web:
description: 'Web'
required: false
default: 'false'
excludeOptions:
type: string
description: Separate the files or folders that you do not want to see in the release with a comma.
required: false
jobs:
simple-create-release:
uses: esx-framework/.github/.github/workflows/simple-release.yml@main
with:
zipName: ${{ github.event.inputs.zipName }}
web: ${{ github.event.inputs.web }}
versionNumber: ${{ github.event.inputs.versionNumber }}
excludeOptions: ${{ github.event.inputs.excludeOptions }}
+1
View File
@@ -1011,6 +1011,7 @@ CREATE TABLE IF NOT EXISTS `banking` (
`time` bigint(20) DEFAULT NULL,
`ID` int(11) NOT NULL AUTO_INCREMENT,
`balance` int(11) DEFAULT 0,
`label` varchar(255) DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;