forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/BoshyG/Paradise-SS220
- Loading branch information
Showing
385 changed files
with
12,256 additions
and
10,239 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
-- Migration: 59-60 | ||
-- Author: warriorstar | ||
-- Introduced: PR# 26645 | ||
|
||
-- This migration adds the 'ledger' and 'nested ledger' enum values to the | ||
-- `feedback` table in conjunction with making those feedback types available | ||
-- through SSblackbox. | ||
-- No data migration is required. | ||
|
||
ALTER TABLE | ||
`feedback` | ||
MODIFY | ||
COLUMN `key_type` ENUM( | ||
'text', | ||
'amount', | ||
'tally', | ||
'nested tally', | ||
'associative', | ||
'ledger', | ||
'nested ledger' | ||
) NOT NULL | ||
AFTER | ||
`key_name`; |
Oops, something went wrong.