1 | <?php |
||
7 | class MessagesSchema |
||
8 | { |
||
9 | /** |
||
10 | * Creates tables on the current schema given. |
||
11 | * |
||
12 | * @param Schema $schema |
||
13 | */ |
||
14 | 8 | public static function create(Schema $schema) |
|
19 | |||
20 | /** |
||
21 | * Creates queue table on the current schema given. |
||
22 | * |
||
23 | * @param Schema $schema |
||
24 | */ |
||
25 | 8 | protected static function createQueueTable(Schema $schema) |
|
31 | |||
32 | /** |
||
33 | * Creates message table on the current schema given. |
||
34 | * |
||
35 | * @param Schema $schema |
||
36 | */ |
||
37 | 8 | protected static function createMessagesTable(Schema $schema) |
|
53 | } |
||
54 |