Reviews_Post.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SmashBalloon\Reviews\Common\Migrations; |
| 4 | |
| 5 | use Smashballoon\Stubs\Services\ServiceProvider; |
| 6 | |
| 7 | /** |
| 8 | * Migration for Reviews Post table creation. |
| 9 | */ |
| 10 | class Reviews_Post extends ServiceProvider |
| 11 | { |
| 12 | public function register() |
| 13 | { |
| 14 | $this->create_table(); |
| 15 | } |
| 16 | |
| 17 | private function create_table() |
| 18 | { |
| 19 | } |
| 20 | } |
| 21 |