Fix enum column validation and migration data types

Remove numbered emoji and add no-emoji policy to CLAUDE.md

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-10-21 07:33:24 +00:00
parent 9d44fcff55
commit faf34e1a9d
7 changed files with 41 additions and 23 deletions

View File

@@ -87,12 +87,12 @@ class Migrate_Commit_Command extends Command
try {
// Step 1: Remove backup directory
if (is_dir($this->backup_dir)) {
$this->info('1 Removing backup snapshot...');
$this->info('[1] Removing backup snapshot...');
$this->run_command(['rm', '-rf', $this->backup_dir]);
}
// Step 2: Remove migration flag
$this->info('2 Removing migration flag...');
$this->info('[2] Removing migration flag...');
unlink($this->flag_file);
// Success