Skip to content

Commit

Permalink
[Sync] Change DB Layout to match other cores
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1arm authored and AntzMangos committed Jan 15, 2015
1 parent d558d89 commit 26a2427
Show file tree
Hide file tree
Showing 180 changed files with 21,834 additions and 28,306 deletions.
46 changes: 46 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Add directories, files, and symlinks which shall not be stored within
# this git repository here.

# Placeholder files for directories needed to be inside git but empty
!*.gitkeep

# JetBrains - project settings
/.idea/

# Eclipse - project settings
/.project
/.settings
/.buildpath
/.externalToolBuilders

# Sublime Text 2 - project files
/*.sublime-project
/*.sublime-workspace

# Numerous always-ignore extensions
*.diff
*.err
*.orig
*.log
*.rej
*.swo
*.swp
*.vi
*~
*.sass-cache

# OS or Editor folders
.DS_Store
.cache
.project
.settings
.tmproj
nbproject
Thumbs.db

# Configuration files to be customized

# Cache and log files

# Generated files, vendor libraries

5 changes: 5 additions & 0 deletions Character/Setup/characterCreateDB.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CREATE DATABASE `characters` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

CREATE USER 'mangos'@'localhost' IDENTIFIED BY 'mangos';

GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, ALTER, LOCK TABLES ON `characters`.* TO 'mangos'@'localhost';
Loading

0 comments on commit 26a2427

Please sign in to comment.