Skip to content

Commit

Permalink
Merge pull request #1289 from zRxnx/main
Browse files Browse the repository at this point in the history
fix(SQL): fixed missing column
  • Loading branch information
Gellipapa authored Jan 22, 2024
2 parents cf52f2a + 5a443fa commit 1f68b2b
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 34 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/auto-move-project-card.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 0 additions & 34 deletions .github/workflows/main.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/simple-release.yml
Original file line number Diff line number Diff line change
@@ -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 change: 1 addition & 0 deletions [SQL]/legacy.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 1f68b2b

Please sign in to comment.