hasTable('pdfdraw_items')) { $table = $schema->createTable('pdfdraw_items'); $table->addColumn('file_id', 'string', [ 'notnull' => true, ]); $table->addColumn('page', 'integer', [ 'notnull' => true, ]); $table->addColumn('name', 'string', [ 'notnull' => true, ]); $table->addColumn('data', 'text', [ 'notnull' => true, ]); $table->setPrimaryKey(['file_id', 'name']); $table->addIndex(['file_id'], 'fileid_index'); } return $schema; } }