Sequenzia/db/table_schema/production/bans.php
2013-10-26 18:06:58 -05:00

35 lines
519 B
PHP
Executable File

<?php
return array (
0 =>
array (
'user_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'reason' =>
array (
'type' => 'text',
'default' => NULL,
),
'expires_at' =>
array (
'type' => 'datetime',
'default' => NULL,
),
'banned_by' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'old_level' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
),
1 =>
array (
),
)
;