diff options
| author | Shauren <none@none> | 2010-08-06 13:12:18 +0200 |
|---|---|---|
| committer | Shauren <none@none> | 2010-08-06 13:12:18 +0200 |
| commit | 9b22ad006b35217c1a74db9fca15ddbe72d9c817 (patch) | |
| tree | 16114b9e8c30af2989c6727316532532bafbfe49 /sql | |
| parent | c0df111bb08a81fa03e50b1622e248dfec3e3eec (diff) | |
Removed unused access_id from instance_template table (obsolete since access_requirement rewrite)
Fixed build issues with my previous commit
--HG--
branch : trunk
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/base/world_database.sql | 1 | ||||
| -rw-r--r-- | sql/updates/9191_world_instance_template.sql | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 87c843618da..a8d2f1530e9 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -2715,7 +2715,6 @@ DROP TABLE IF EXISTS `instance_template`; CREATE TABLE `instance_template` ( `map` smallint(5) unsigned NOT NULL, `parent` int(10) unsigned NOT NULL, - `access_id` bigint(20) unsigned NOT NULL DEFAULT '0', `startLocX` float DEFAULT NULL, `startLocY` float DEFAULT NULL, `startLocZ` float DEFAULT NULL, diff --git a/sql/updates/9191_world_instance_template.sql b/sql/updates/9191_world_instance_template.sql new file mode 100644 index 00000000000..9510cb8cde0 --- /dev/null +++ b/sql/updates/9191_world_instance_template.sql @@ -0,0 +1 @@ +ALTER TABLE `instance_template` DROP `access_id`; |
