hasTable('file_metadata')) { // $table = $schema->createTable('file_metadata'); // $table->addColumn('id', Types::BIGINT, [ // 'notnull' => true, // ]); // $table->addColumn('group_name', Types::STRING, [ // 'notnull' => true, // 'length' => 50, // ]); // $table->addColumn('value', Types::TEXT, [ // 'notnull' => false, // 'default' => '', // ]); // $table->setPrimaryKey(['id', 'group_name'], 'file_metadata_idx'); // return $schema; // } return null; } }