diff options
author | runningnak3d <runningnak3d@gmail.com> | 2011-02-02 07:50:21 -0700 |
---|---|---|
committer | runningnak3d <runningnak3d@gmail.com> | 2011-02-02 07:50:21 -0700 |
commit | 0a5d8711e5294c36d40b779187e1718d3365f5fa (patch) | |
tree | 66886f94d35e874a6c02c18f8e4c0b6fd702aa10 /sql/old/3.0.9/02031_realmd.sql | |
parent | 704e0af9c4e656e8aae5f163fce8cced14a39112 (diff) |
Misc: Restructuring directory layout to accomodate the fact that we will
be pushing DB content. We will no longer have a seperate DB repo.
Diffstat (limited to 'sql/old/3.0.9/02031_realmd.sql')
-rw-r--r-- | sql/old/3.0.9/02031_realmd.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/old/3.0.9/02031_realmd.sql b/sql/old/3.0.9/02031_realmd.sql new file mode 100644 index 00000000000..fb81c0e99c8 --- /dev/null +++ b/sql/old/3.0.9/02031_realmd.sql @@ -0,0 +1,8 @@ +DROP TABLE IF EXISTS `logs`; +-- create logs table +CREATE TABLE `logs` ( + `time` int(14) NOT NULL, + `realm` int(4) NOT NULL, + `type` int(4) NOT NULL, + `string` text +) ENGINE=MyISAM DEFAULT CHARSET=latin1; |