| 1 | <?php |
||
| 11 | class CreateMetaAttributesTable extends Migration |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Meta attributes table name. |
||
| 15 | * |
||
| 16 | * @todo allow table name customization via config |
||
| 17 | * |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | protected $table = 'meta_attributes'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Run the migrations. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | public function up() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Reverse the migrations. |
||
| 48 | * |
||
| 49 | * @return void |
||
| 50 | */ |
||
| 51 | public function down() |
||
| 55 | } |
||
| 56 |