Changeset 8627 for trunk


Ignore:
Timestamp:
01/14/12 07:44:49 (16 months ago)
Author:
MELERIX
Message:

BETA/STABLE: Added email & created_time columns to accounts.sql (used by some tools like ACM and Drupal).

Location:
trunk/L2J_DataPack/dist/sql/login
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/L2J_DataPack/dist/sql/login/accounts.sql

    r8406 r8627  
    11CREATE TABLE IF NOT EXISTS `accounts` ( 
    22  `login` VARCHAR(45) NOT NULL default '', 
    3   `password` VARCHAR(45) , 
     3  `password` VARCHAR(45), 
     4  `email` varchar(255) DEFAULT NULL, 
     5  `created_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 
    46  `lastactive` bigint(13) unsigned NOT NULL DEFAULT '0', 
    57  `accessLevel` TINYINT NOT NULL DEFAULT 0, 
Note: See TracChangeset for help on using the changeset viewer.