当 OctoberCMS 创建这个表时,它只有 id 列。
我不知道为什么。
这是我的更新/createTable.php 文件中的类。
class CreateCellphoneTable extends Migration
{
public function up()
{
Schema::create('iaff106_cell_phones', function($table)
{
$table->engine = 'InnoDB';
$table->increments('id');
$table->integer('user_id')->unsigned()->nullable()->index();
$table->string('label')->nullable();
$table->string('phone')->index();
$table->integer('provider_id')->nullable();
$table->boolean('cantxt')->default(true);
$table->boolean('published')->default(false);
$table->timestamps();
});
}
}
我正在执行这样的工匠:
php artisan plugin:refresh IAFF106.CellPhone