1 | <?php |
||
10 | class MessagesSchema |
||
11 | { |
||
12 | /** |
||
13 | * Creates tables on the current schema given. |
||
14 | * |
||
15 | * @param Schema $schema |
||
16 | */ |
||
17 | public static function create(Schema $schema) |
||
22 | |||
23 | /** |
||
24 | * Creates queue table on the current schema given. |
||
25 | * |
||
26 | * @param Schema $schema |
||
27 | */ |
||
28 | protected static function createQueueTable(Schema $schema) |
||
34 | |||
35 | /** |
||
36 | * Creates message table on the current schema given. |
||
37 | * |
||
38 | * @param Schema $schema |
||
39 | */ |
||
40 | protected static function createMessagesTable(Schema $schema) |
||
56 | } |
||
57 |